pub struct Folder {
pub id: String,
pub parent_id: String,
pub title: String,
pub created_time: i64,
pub updated_time: i64,
pub icon: String,
}Fields§
§id: String§parent_id: String§title: String§created_time: i64§updated_time: i64§icon: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Folder
impl RefUnwindSafe for Folder
impl Send for Folder
impl Sync for Folder
impl Unpin for Folder
impl UnsafeUnpin for Folder
impl UnwindSafe for Folder
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