Struct bollard_stubs::models::SystemVersion[][src]

pub struct SystemVersion {
    pub platform: Option<SystemVersionPlatform>,
    pub components: Option<Vec<SystemVersionComponents>>,
    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>,
}

Response of Engine API: GET "/version"

Fields

platform: Option<SystemVersionPlatform>components: Option<Vec<SystemVersionComponents>>

Information about system components

version: Option<String>

The version of the daemon

api_version: Option<String>

The default (and highest) API version that is supported by the daemon

min_api_version: Option<String>

The minimum API version that is supported by the daemon

git_commit: Option<String>

The Git commit of the source code that was used to build the daemon

go_version: Option<String>

The version Go used to compile the daemon, and the version of the Go runtime in use.

os: Option<String>

The operating system that the daemon is running on ("linux" or "windows")

arch: Option<String>

The architecture that the daemon is running on

kernel_version: Option<String>

The kernel version (uname -r) that the daemon is running on. This field is omitted when empty.

experimental: Option<bool>

Indicates if the daemon is started with experimental features enabled. This field is omitted when empty / false.

build_time: Option<String>

The date and time that the daemon was compiled.

Trait Implementations

impl Clone for SystemVersion[src]

impl Debug for SystemVersion[src]

impl Default for SystemVersion[src]

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

impl PartialEq<SystemVersion> for SystemVersion[src]

impl Serialize for SystemVersion[src]

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