pub struct EntryBase {
pub created: DateTime<Utc>,
pub modified: DateTime<Utc>,
pub parent_folder_id: Option<u64>,
pub icon: String,
pub id: String,
pub name: String,
pub path: Option<String>,
pub thumb: bool,
pub is_shared: bool,
pub is_mine: bool,
}
Fields§
§created: DateTime<Utc>
§modified: DateTime<Utc>
§parent_folder_id: Option<u64>
§icon: String
§id: String
§name: String
§path: Option<String>
§thumb: bool
§is_mine: bool
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EntryBase
impl<'de> Deserialize<'de> for EntryBase
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 Eq for EntryBase
impl StructuralPartialEq for EntryBase
Auto Trait Implementations§
impl Freeze for EntryBase
impl RefUnwindSafe for EntryBase
impl Send for EntryBase
impl Sync for EntryBase
impl Unpin for EntryBase
impl UnwindSafe for EntryBase
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