pub struct Volume {
pub name: String,
pub size_bytes: i64,
pub file_count: i32,
pub created_at: String,
pub created_by: String,
pub updated_at: Option<Option<String>>,
pub last_used_at: Option<Option<String>>,
pub extra_perms: Option<HashMap<String, Value>>,
}Fields§
§name: String§size_bytes: i64§file_count: i32§created_at: String§created_by: String§updated_at: Option<Option<String>>§last_used_at: Option<Option<String>>§extra_perms: Option<HashMap<String, Value>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Volume
impl<'de> Deserialize<'de> for Volume
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
impl StructuralPartialEq for Volume
Auto Trait Implementations§
impl Freeze for Volume
impl RefUnwindSafe for Volume
impl Send for Volume
impl Sync for Volume
impl Unpin for Volume
impl UnsafeUnpin for Volume
impl UnwindSafe for Volume
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