[][src]Struct nbd::Export

pub struct Export {
    pub size: u64,
    pub readonly: bool,
    pub resizeable: bool,
    pub rotational: bool,
    pub send_trim: bool,
    pub send_flush: bool,
}

Information about an export (without name)

Fields

size: u64

Size of the underlying data, in bytes

readonly: bool

Tell client it's readonly

resizeable: bool

Tell that NBD_CMD_RESIZE should be supported. Not implemented in this library currently

rotational: bool

Tell that the exposed device has slow seeks, hence clients should use elevator algorithm

send_trim: bool

Tell that NBD_CMD_TRIM operation is supported. Not implemented in this library currently

send_flush: bool

Tell that NBD_CMD_FLUSH may be sent

Trait Implementations

impl Debug for Export[src]

impl Default for Export[src]

impl Eq for Export[src]

impl Hash for Export[src]

impl Ord for Export[src]

impl PartialEq<Export> for Export[src]

impl PartialOrd<Export> for Export[src]

impl StructuralEq for Export[src]

impl StructuralPartialEq for Export[src]

Auto Trait Implementations

impl RefUnwindSafe for Export

impl Send for Export

impl Sync for Export

impl Unpin for Export

impl UnwindSafe for Export

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> 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.