pub struct UnknownTag {
pub name: String,
pub data: UnknownData,
}Expand description
An unrecognized entry in the capability string
Fields§
§name: StringThe name of the entry
data: UnknownDataThe data contained in the entry, usually an unparsed string.
Trait Implementations§
Source§impl Clone for UnknownTag
impl Clone for UnknownTag
Source§fn clone(&self) -> UnknownTag
fn clone(&self) -> UnknownTag
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 UnknownTag
impl Debug for UnknownTag
Source§impl Hash for UnknownTag
impl Hash for UnknownTag
Source§impl Ord for UnknownTag
impl Ord for UnknownTag
Source§fn cmp(&self, other: &UnknownTag) -> Ordering
fn cmp(&self, other: &UnknownTag) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for UnknownTag
impl PartialEq for UnknownTag
Source§impl PartialOrd for UnknownTag
impl PartialOrd for UnknownTag
impl Eq for UnknownTag
impl StructuralPartialEq for UnknownTag
Auto Trait Implementations§
impl Freeze for UnknownTag
impl RefUnwindSafe for UnknownTag
impl Send for UnknownTag
impl Sync for UnknownTag
impl Unpin for UnknownTag
impl UnwindSafe for UnknownTag
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