pub struct DriveFolder {
pub id: Id<DriveFolder>,
pub created_at: DateTime<Utc>,
pub name: String,
pub folders_count: Option<u64>,
pub files_count: Option<u64>,
pub parent_id: Option<Id<DriveFolder>>,
pub parent: Option<Box<DriveFolder>>,
}Fields§
§id: Id<DriveFolder>§created_at: DateTime<Utc>§name: String§folders_count: Option<u64>§files_count: Option<u64>§parent_id: Option<Id<DriveFolder>>§parent: Option<Box<DriveFolder>>Trait Implementations§
Source§impl Clone for DriveFolder
impl Clone for DriveFolder
Source§fn clone(&self) -> DriveFolder
fn clone(&self) -> DriveFolder
Returns a duplicate of the value. Read more
1.0.0 · 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 DriveFolder
impl Debug for DriveFolder
Source§impl<'de> Deserialize<'de> for DriveFolder
impl<'de> Deserialize<'de> for DriveFolder
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 Entity for DriveFolder
impl Entity for DriveFolder
Source§fn id(&self) -> Id<DriveFolder>
fn id(&self) -> Id<DriveFolder>
Gets the ID.
Source§impl PaginationItem for DriveFolder
impl PaginationItem for DriveFolder
Source§type Id = Id<DriveFolder>
type Id = Id<DriveFolder>
The ID type.
Source§fn item_id(&self) -> Id<DriveFolder>
fn item_id(&self) -> Id<DriveFolder>
Extracts an ID from the item.
Auto Trait Implementations§
impl Freeze for DriveFolder
impl RefUnwindSafe for DriveFolder
impl Send for DriveFolder
impl Sync for DriveFolder
impl Unpin for DriveFolder
impl UnwindSafe for DriveFolder
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