pub struct VolumeInspect {Show 17 fields
pub anonymous: Option<bool>,
pub created_at: DateTime<Utc>,
pub driver: String,
pub gid: Option<i64>,
pub labels: HashMap<String, String>,
pub lock_number: u32,
pub mount_count: u64,
pub mount_point: Option<String>,
pub name: String,
pub needs_chown: bool,
pub needs_copy_up: bool,
pub options: HashMap<String, String>,
pub scope: String,
pub status: Option<HashMap<String, Value>>,
pub storage_id: Option<String>,
pub timeout: Option<u64>,
pub uid: Option<i64>,
}
Fields§
§anonymous: Option<bool>
§created_at: DateTime<Utc>
§driver: String
§gid: Option<i64>
§labels: HashMap<String, String>
§lock_number: u32
§mount_count: u64
§mount_point: Option<String>
§name: String
§needs_chown: bool
§needs_copy_up: bool
§options: HashMap<String, String>
§scope: String
§status: Option<HashMap<String, Value>>
§storage_id: Option<String>
§timeout: Option<u64>
§uid: Option<i64>
Trait Implementations§
Source§impl Debug for VolumeInspect
impl Debug for VolumeInspect
Source§impl<'de> Deserialize<'de> for VolumeInspect
impl<'de> Deserialize<'de> for VolumeInspect
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
Auto Trait Implementations§
impl Freeze for VolumeInspect
impl RefUnwindSafe for VolumeInspect
impl Send for VolumeInspect
impl Sync for VolumeInspect
impl Unpin for VolumeInspect
impl UnwindSafe for VolumeInspect
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