pub struct VolumeSummary {
pub host: HostId,
pub topology_revision: TopologyRevision,
pub name: String,
pub driver: String,
pub mountpoint: String,
pub scope: Option<String>,
pub labels: BTreeMap<String, String>,
}Expand description
Neutral Docker volume summary.
Fields§
§host: HostIdTarget host.
topology_revision: TopologyRevisionExact topology revision.
name: StringVolume name.
driver: StringVolume driver.
mountpoint: StringHost mountpoint.
scope: Option<String>Volume scope.
labels: BTreeMap<String, String>Volume labels.
Trait Implementations§
Source§impl Clone for VolumeSummary
impl Clone for VolumeSummary
Source§fn clone(&self) -> VolumeSummary
fn clone(&self) -> VolumeSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VolumeSummary
impl Debug for VolumeSummary
Source§impl<'de> Deserialize<'de> for VolumeSummary
impl<'de> Deserialize<'de> for VolumeSummary
Source§fn 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
Source§impl PartialEq for VolumeSummary
impl PartialEq for VolumeSummary
Source§fn eq(&self, other: &VolumeSummary) -> bool
fn eq(&self, other: &VolumeSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VolumeSummary
impl Serialize for VolumeSummary
impl Eq for VolumeSummary
impl StructuralPartialEq for VolumeSummary
Auto Trait Implementations§
impl Freeze for VolumeSummary
impl RefUnwindSafe for VolumeSummary
impl Send for VolumeSummary
impl Sync for VolumeSummary
impl Unpin for VolumeSummary
impl UnsafeUnpin for VolumeSummary
impl UnwindSafe for VolumeSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.