pub struct DecoratedEntry {
pub path: PathBuf,
pub metadata: EntryMetadata,
pub custom_fields: HashMap<String, String>,
}Fields§
§path: PathBuf§metadata: EntryMetadata§custom_fields: HashMap<String, String>Trait Implementations§
Source§impl Clone for DecoratedEntry
impl Clone for DecoratedEntry
Source§fn clone(&self) -> DecoratedEntry
fn clone(&self) -> DecoratedEntry
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<'de> Deserialize<'de> for DecoratedEntry
impl<'de> Deserialize<'de> for DecoratedEntry
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 From<DecoratedEntry> for DecoratedEntry
impl From<DecoratedEntry> for DecoratedEntry
Source§fn from(entry: DecoratedEntry) -> Self
fn from(entry: DecoratedEntry) -> Self
Converts to this type from the input type.
Source§impl Serialize for DecoratedEntry
impl Serialize for DecoratedEntry
Source§impl TryFrom<DecoratedEntry> for DecoratedEntry
impl TryFrom<DecoratedEntry> for DecoratedEntry
Auto Trait Implementations§
impl Freeze for DecoratedEntry
impl RefUnwindSafe for DecoratedEntry
impl Send for DecoratedEntry
impl Sync for DecoratedEntry
impl Unpin for DecoratedEntry
impl UnwindSafe for DecoratedEntry
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