Struct podman_api::models::LibpodPingInfo
source · [−]pub struct LibpodPingInfo {
pub api_version: String,
pub libpod_api_version: String,
pub libpod_buildah_version: String,
pub buildkit_version: Option<String>,
pub cache_control: String,
pub docker_experimental: bool,
pub pragma: String,
}Expand description
Data returned from /ping endpoint by libpod
Fields
api_version: StringMax compatibility API Version the server supports
libpod_api_version: StringMax Podman API Version the server supports. Available if service is backed by Podman, therefore may be used to determine if talking to Podman engine or another engine
libpod_buildah_version: StringDefault version of libpod image builder. Available if service is backed by Podman, therefore may be used to determine if talking to Podman engine or another engine
buildkit_version: Option<String>Default version of docker image builder
cache_control: StringAlways no-cache
docker_experimental: boolIf the server is running with experimental mode enabled, always true
pragma: StringAlways no-cache
Trait Implementations
sourceimpl Debug for LibpodPingInfo
impl Debug for LibpodPingInfo
sourceimpl Serialize for LibpodPingInfo
impl Serialize for LibpodPingInfo
Auto Trait Implementations
impl RefUnwindSafe for LibpodPingInfo
impl Send for LibpodPingInfo
impl Sync for LibpodPingInfo
impl Unpin for LibpodPingInfo
impl UnwindSafe for LibpodPingInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more