pub struct VersionedFolder {
pub label: String,
pub parent: ParentInfo,
pub updated: u64,
pub edited: u64,
pub revision: Uuid,
pub cse_type: String,
pub cse_key: String,
pub sse_type: String,
pub client: String,
pub hidden: bool,
pub trashed: bool,
pub favorite: bool,
}
Expand description
versioned properties of Folder
Fields§
§label: String
§parent: ParentInfo
§updated: u64
§edited: u64
§revision: Uuid
§cse_type: String
§cse_key: String
§sse_type: String
§client: String
§trashed: bool
§favorite: bool
Trait Implementations§
Source§impl Debug for VersionedFolder
impl Debug for VersionedFolder
Source§impl<'de> Deserialize<'de> for VersionedFolder
impl<'de> Deserialize<'de> for VersionedFolder
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 VersionedFolder
impl RefUnwindSafe for VersionedFolder
impl Send for VersionedFolder
impl Sync for VersionedFolder
impl Unpin for VersionedFolder
impl UnwindSafe for VersionedFolder
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