pub struct Folder {
pub path_from_root: PathBuf,
pub root_folder: LrId,
pub content: Option<Content>,
/* private fields */
}Expand description
A folder define the container for LibraryFiles
They are all attached to a RootFolder
Fields§
§path_from_root: PathBufPath from the RootFolder
root_folder: LrIdId of the RootFolder
content: Option<Content>Implementations§
Trait 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