Struct podman_api_stubs::models::DockerVolumeInfoResponse
source · [−]pub struct DockerVolumeInfoResponse {
pub created_at: Option<String>,
pub driver: String,
pub labels: HashMap<String, String>,
pub mountpoint: String,
pub name: String,
pub options: HashMap<String, String>,
pub scope: String,
pub status: Option<HashMap<String, Value>>,
pub usage_data: Option<VolumeUsageData>,
}
Fields
created_at: Option<String>
Date/Time the volume was created.
driver: String
Name of the volume driver used by the volume.
labels: HashMap<String, String>
User-defined key/value metadata.
mountpoint: String
Mount path of the volume on the host.
name: String
Name of the volume.
options: HashMap<String, String>
The driver specific options used when creating the volume.
scope: String
The level at which the volume exists. Either global
for cluster-wide, or local
for machine level.
status: Option<HashMap<String, Value>>
Low-level details about the volume, provided by the volume driver. Details are returned as a map with key/value pairs: {\"key\":\"value\",\"key2\":\"value2\"}
. The Status
field is optional, and is omitted if the volume driver does not support this feature.
usage_data: Option<VolumeUsageData>
Trait Implementations
sourceimpl Clone for DockerVolumeInfoResponse
impl Clone for DockerVolumeInfoResponse
sourcefn clone(&self) -> DockerVolumeInfoResponse
fn clone(&self) -> DockerVolumeInfoResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DockerVolumeInfoResponse
impl Debug for DockerVolumeInfoResponse
sourceimpl<'de> Deserialize<'de> for DockerVolumeInfoResponse
impl<'de> Deserialize<'de> for DockerVolumeInfoResponse
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<DockerVolumeInfoResponse> for DockerVolumeInfoResponse
impl PartialEq<DockerVolumeInfoResponse> for DockerVolumeInfoResponse
sourcefn eq(&self, other: &DockerVolumeInfoResponse) -> bool
fn eq(&self, other: &DockerVolumeInfoResponse) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DockerVolumeInfoResponse) -> bool
fn ne(&self, other: &DockerVolumeInfoResponse) -> bool
This method tests for !=
.
sourceimpl Serialize for DockerVolumeInfoResponse
impl Serialize for DockerVolumeInfoResponse
impl StructuralPartialEq for DockerVolumeInfoResponse
Auto Trait Implementations
impl RefUnwindSafe for DockerVolumeInfoResponse
impl Send for DockerVolumeInfoResponse
impl Sync for DockerVolumeInfoResponse
impl Unpin for DockerVolumeInfoResponse
impl UnwindSafe for DockerVolumeInfoResponse
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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more