[][src]Struct redoxfs::Header

#[repr(packed)]
pub struct Header {
    pub signature: [u8; 8],
    pub version: u64,
    pub uuid: [u8; 16],
    pub size: u64,
    pub root: u64,
    pub free: u64,
    pub padding: [u8; 4040],
}

The header of the filesystem

Fields

signature: [u8; 8]

Signature, should be SIGNATURE

version: u64

Version, should be VERSION

uuid: [u8; 16]

Disk ID, a 128-bit unique identifier

size: u64

Disk size, in number of BLOCK_SIZE sectors

root: u64

Block of root node

free: u64

Block of free space node

padding: [u8; 4040]

Padding

Methods

impl Header[src]

pub fn default() -> Header[src]

pub fn new(size: u64, root: u64, free: u64) -> Header[src]

pub fn valid(&self) -> bool[src]

Trait Implementations

impl Clone for Header[src]

impl Copy for Header[src]

impl DerefMut for Header[src]

impl Deref for Header[src]

type Target = [u8]

The resulting type after dereferencing.

impl Debug for Header[src]

Auto Trait Implementations

impl Unpin for Header

impl Sync for Header

impl Send for Header

impl UnwindSafe for Header

impl RefUnwindSafe for Header

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]