pub struct SingleFileAttribute {
pub name: Option<String>,
pub value: Option<String>,
}Expand description
Extended attribute for a logical single-file entry.
Fields§
§name: Option<String>Attribute name.
value: Option<String>Attribute value.
Implementations§
Trait Implementations§
Source§impl Clone for SingleFileAttribute
impl Clone for SingleFileAttribute
Source§fn clone(&self) -> SingleFileAttribute
fn clone(&self) -> SingleFileAttribute
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SingleFileAttribute
impl Debug for SingleFileAttribute
Source§impl Default for SingleFileAttribute
impl Default for SingleFileAttribute
Source§fn default() -> SingleFileAttribute
fn default() -> SingleFileAttribute
Returns the “default value” for a type. Read more
impl Eq for SingleFileAttribute
Source§impl PartialEq for SingleFileAttribute
impl PartialEq for SingleFileAttribute
impl StructuralPartialEq for SingleFileAttribute
Auto Trait Implementations§
impl Freeze for SingleFileAttribute
impl RefUnwindSafe for SingleFileAttribute
impl Send for SingleFileAttribute
impl Sync for SingleFileAttribute
impl Unpin for SingleFileAttribute
impl UnsafeUnpin for SingleFileAttribute
impl UnwindSafe for SingleFileAttribute
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.