[][src]Struct qapi_qmp::BlockdevOptionsNfs

pub struct BlockdevOptionsNfs {
    pub path: String,
    pub tcp_syn_count: Option<isize>,
    pub user: Option<isize>,
    pub page_cache_size: Option<isize>,
    pub group: Option<isize>,
    pub readahead_size: Option<isize>,
    pub debug: Option<isize>,
    pub server: NFSServer,
}

Fields

path: Stringtcp_syn_count: Option<isize>user: Option<isize>page_cache_size: Option<isize>group: Option<isize>readahead_size: Option<isize>debug: Option<isize>server: NFSServer

Trait Implementations

impl Clone for BlockdevOptionsNfs[src]

impl Debug for BlockdevOptionsNfs[src]

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

impl Serialize for BlockdevOptionsNfs[src]

Auto Trait Implementations

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: for<'de> Deserialize<'de>, 
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.