[][src]Struct rair_io::RIODesc

pub struct RIODesc { /* fields omitted */ }

Methods

impl RIODesc[src]

pub fn name(&self) -> &str[src]

Returns URI of current file descriptor.

pub fn has_paddr(&self, paddr: u64) -> bool[src]

Returns true if paddr exists in this file descriptor and false otherwise.

pub fn paddr_base(&self) -> u64[src]

Returns the base physical address of this file.

pub fn size(&self) -> u64[src]

Returns size of file on disk.

pub fn perm(&self) -> IoMode[src]

Returns the permissions which the file was opened with.

pub fn hndl(&self) -> u64[src]

Returns the Handle of given file descriptor.

Trait Implementations

impl<'de> Deserialize<'de> for RIODesc[src]

impl Serialize for RIODesc[src]

Auto Trait Implementations

impl !RefUnwindSafe for RIODesc

impl !Send for RIODesc

impl !Sync for RIODesc

impl Unpin for RIODesc

impl !UnwindSafe for RIODesc

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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.