pub struct FileAttributes {
pub name: String,
pub c: Option<String>,
pub unknown: HashMap<String, Value>,
}Expand description
File attributes
Fields§
§name: StringThe name of the file
c: Option<String>?
unknown: HashMap<String, Value>Unknown attributes
Trait Implementations§
Source§impl Debug for FileAttributes
impl Debug for FileAttributes
Source§impl<'de> Deserialize<'de> for FileAttributes
impl<'de> Deserialize<'de> for FileAttributes
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 FileAttributes
impl RefUnwindSafe for FileAttributes
impl Send for FileAttributes
impl Sync for FileAttributes
impl Unpin for FileAttributes
impl UnwindSafe for FileAttributes
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