[][src]Struct bollard_stubs::models::SystemVersionResponse

pub struct SystemVersionResponse {
    pub platform: Option<SystemVersionResponsePlatform>,
    pub components: Option<Vec<SystemVersionResponseComponents>>,
    pub version: Option<String>,
    pub api_version: Option<String>,
    pub min_api_version: Option<String>,
    pub git_commit: Option<String>,
    pub go_version: Option<String>,
    pub os: Option<String>,
    pub arch: Option<String>,
    pub kernel_version: Option<String>,
    pub experimental: Option<bool>,
    pub build_time: Option<String>,
}

Fields

platform: Option<SystemVersionResponsePlatform>components: Option<Vec<SystemVersionResponseComponents>>version: Option<String>api_version: Option<String>min_api_version: Option<String>git_commit: Option<String>go_version: Option<String>os: Option<String>arch: Option<String>kernel_version: Option<String>experimental: Option<bool>build_time: Option<String>

Trait Implementations

impl Clone for SystemVersionResponse[src]

impl Debug for SystemVersionResponse[src]

impl Default for SystemVersionResponse[src]

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

impl PartialEq<SystemVersionResponse> for SystemVersionResponse[src]

impl Serialize for SystemVersionResponse[src]

impl StructuralPartialEq for SystemVersionResponse[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.