Struct podman_api::models::StoreInfo
source · [−]pub struct StoreInfo {
pub config_file: Option<String>,
pub container_store: Option<ContainerStore>,
pub graph_driver_name: Option<String>,
pub graph_options: Option<HashMap<String, Value, RandomState>>,
pub graph_root: Option<String>,
pub graph_root_allocated: Option<u64>,
pub graph_root_used: Option<u64>,
pub graph_status: Option<HashMap<String, String, RandomState>>,
pub image_copy_tmp_dir: Option<String>,
pub image_store: Option<ImageStore>,
pub run_root: Option<String>,
pub volume_path: Option<String>,
}
Expand description
StoreInfo describes the container storage and its attributes
Fields
config_file: Option<String>
container_store: Option<ContainerStore>
graph_driver_name: Option<String>
graph_options: Option<HashMap<String, Value, RandomState>>
graph_root: Option<String>
graph_root_allocated: Option<u64>
GraphRootAllocated is how much space the graphroot has in bytes
graph_root_used: Option<u64>
GraphRootUsed is how much of graphroot is used in bytes
graph_status: Option<HashMap<String, String, RandomState>>
image_copy_tmp_dir: Option<String>
image_store: Option<ImageStore>
run_root: Option<String>
volume_path: Option<String>
Trait Implementations
sourceimpl<'de> Deserialize<'de> for StoreInfo
impl<'de> Deserialize<'de> for StoreInfo
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<StoreInfo, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<StoreInfo, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<StoreInfo> for StoreInfo
impl PartialEq<StoreInfo> for StoreInfo
sourceimpl Serialize for StoreInfo
impl Serialize for StoreInfo
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for StoreInfo
Auto Trait Implementations
impl RefUnwindSafe for StoreInfo
impl Send for StoreInfo
impl Sync for StoreInfo
impl Unpin for StoreInfo
impl UnwindSafe for StoreInfo
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