pub struct LibraryFolder {
pub path: String,
pub label: String,
pub contentid: i64,
pub totalsize: usize,
pub update_clean_bytes_tally: Option<usize>,
pub time_last_update_corruption: Option<u64>,
pub apps: HashMap<u32, usize>,
}Fields§
§path: String§label: String§contentid: i64§totalsize: usize§update_clean_bytes_tally: Option<usize>§time_last_update_corruption: Option<u64>§apps: HashMap<u32, usize>Trait Implementations§
Source§impl Clone for LibraryFolder
impl Clone for LibraryFolder
Source§fn clone(&self) -> LibraryFolder
fn clone(&self) -> LibraryFolder
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 LibraryFolder
impl Debug for LibraryFolder
Source§impl<'de> Deserialize<'de> for LibraryFolder
impl<'de> Deserialize<'de> for LibraryFolder
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
Auto Trait Implementations§
impl Freeze for LibraryFolder
impl RefUnwindSafe for LibraryFolder
impl Send for LibraryFolder
impl Sync for LibraryFolder
impl Unpin for LibraryFolder
impl UnwindSafe for LibraryFolder
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