pub struct OrphanEntry {
pub element: String,
pub filename: String,
pub source_dir: String,
}Expand description
A file present on disk but not listed in any catalog.
Fields§
§element: String§filename: String§source_dir: StringTrait Implementations§
Source§impl Clone for OrphanEntry
impl Clone for OrphanEntry
Source§fn clone(&self) -> OrphanEntry
fn clone(&self) -> OrphanEntry
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 OrphanEntry
impl Debug for OrphanEntry
Source§impl<'de> Deserialize<'de> for OrphanEntry
impl<'de> Deserialize<'de> for OrphanEntry
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 OrphanEntry
impl RefUnwindSafe for OrphanEntry
impl Send for OrphanEntry
impl Sync for OrphanEntry
impl Unpin for OrphanEntry
impl UnsafeUnpin for OrphanEntry
impl UnwindSafe for OrphanEntry
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