Struct seed_riscv::fs::ramdisk::Ramdisk

source ·
pub struct Ramdisk {
    base: *const RamdiskHeader,
    offset_to_data: usize,
}

Fields§

§base: *const RamdiskHeader§offset_to_data: usize

Implementations§

source§

impl Ramdisk

source

pub unsafe fn new(address: usize) -> Option<Ramdisk>

source

pub fn entry(&self, name: &str) -> Option<&RamdiskEntry>

source

pub fn entry_data(&self, name: &str) -> Option<&[u8]>

source

pub fn header(&self) -> &RamdiskHeader

source

pub fn entries(&self) -> &[RamdiskEntry]

source

pub fn memory_region(&self) -> (PAddr, usize)

Get the memory region occupied by the ramdisk, in the form (address, size).

Trait Implementations§

source§

impl Filesystem for Ramdisk

source§

fn load(&mut self, path: &str) -> Result<File<'_>, ()>

source§

fn close(&mut self, _file: File<'_>)

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.