pub struct TrashFolder {Show 21 fields
pub id: String,
pub etag: Option<Option<String>>,
pub type: FolderType,
pub sequence_id: Option<String>,
pub name: String,
pub created_at: Option<Option<DateTime<Utc>>>,
pub modified_at: Option<Option<DateTime<Utc>>>,
pub description: String,
pub size: i64,
pub path_collection: TrashFilePathCollection,
pub created_by: UserMini,
pub modified_by: UserMini,
pub trashed_at: Option<Option<DateTime<Utc>>>,
pub purged_at: Option<Option<DateTime<Utc>>>,
pub content_created_at: Option<Option<DateTime<Utc>>>,
pub content_modified_at: Option<Option<DateTime<Utc>>>,
pub owned_by: UserMini,
pub shared_link: Option<Option<String>>,
pub folder_upload_email: Option<Option<String>>,
pub parent: Option<Option<FolderMini>>,
pub item_status: FileItemStatus,
}Fields§
§id: String§etag: Option<Option<String>>§type: FolderType§sequence_id: Option<String>§name: String§created_at: Option<Option<DateTime<Utc>>>§modified_at: Option<Option<DateTime<Utc>>>§description: String§size: i64§path_collection: TrashFilePathCollection§created_by: UserMini§modified_by: UserMini§trashed_at: Option<Option<DateTime<Utc>>>§purged_at: Option<Option<DateTime<Utc>>>§content_created_at: Option<Option<DateTime<Utc>>>§content_modified_at: Option<Option<DateTime<Utc>>>§owned_by: UserMini§folder_upload_email: Option<Option<String>>§parent: Option<Option<FolderMini>>§item_status: FileItemStatusTrait Implementations§
Source§impl Clone for TrashFolder
impl Clone for TrashFolder
Source§fn clone(&self) -> TrashFolder
fn clone(&self) -> TrashFolder
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 TrashFolder
impl Debug for TrashFolder
Source§impl Default for TrashFolder
impl Default for TrashFolder
Source§fn default() -> TrashFolder
fn default() -> TrashFolder
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrashFolder
impl<'de> Deserialize<'de> for TrashFolder
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 TrashFolder
impl PartialEq for TrashFolder
Source§impl Serialize for TrashFolder
impl Serialize for TrashFolder
impl StructuralPartialEq for TrashFolder
Auto Trait Implementations§
impl Freeze for TrashFolder
impl RefUnwindSafe for TrashFolder
impl Send for TrashFolder
impl Sync for TrashFolder
impl Unpin for TrashFolder
impl UnsafeUnpin for TrashFolder
impl UnwindSafe for TrashFolder
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