pub struct LibraryFolderResponse {
pub folder_id: Uuid,
pub group_key: String,
pub group_path: String,
pub visibility: Visibility,
pub parent_folder_id: Option<Uuid>,
pub name: String,
pub path: String,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§folder_id: Uuid§group_key: String§group_path: String§visibility: Visibility§parent_folder_id: Option<Uuid>§name: String§path: String§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for LibraryFolderResponse
impl Clone for LibraryFolderResponse
Source§fn clone(&self) -> LibraryFolderResponse
fn clone(&self) -> LibraryFolderResponse
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 ComposeSchema for LibraryFolderResponse
impl ComposeSchema for LibraryFolderResponse
Source§impl Debug for LibraryFolderResponse
impl Debug for LibraryFolderResponse
Source§impl<'de> Deserialize<'de> for LibraryFolderResponse
impl<'de> Deserialize<'de> for LibraryFolderResponse
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 Serialize for LibraryFolderResponse
impl Serialize for LibraryFolderResponse
Auto Trait Implementations§
impl Freeze for LibraryFolderResponse
impl RefUnwindSafe for LibraryFolderResponse
impl Send for LibraryFolderResponse
impl Sync for LibraryFolderResponse
impl Unpin for LibraryFolderResponse
impl UnsafeUnpin for LibraryFolderResponse
impl UnwindSafe for LibraryFolderResponse
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