pub struct Features(_);Expand description
Implementations
sourceimpl Features
impl Features
sourcepub fn get(&self, key: u8) -> Option<&Feature>
pub fn get(&self, key: u8) -> Option<&Feature>
Gets a reference to a Feature from a feature kind, if any.
sourcepub fn sender(&self) -> Option<&SenderFeature>
pub fn sender(&self) -> Option<&SenderFeature>
Gets a reference to a SenderFeature, if any.
sourcepub fn issuer(&self) -> Option<&IssuerFeature>
pub fn issuer(&self) -> Option<&IssuerFeature>
Gets a reference to a IssuerFeature, if any.
sourcepub fn metadata(&self) -> Option<&MetadataFeature>
pub fn metadata(&self) -> Option<&MetadataFeature>
Gets a reference to a MetadataFeature, if any.
sourcepub fn tag(&self) -> Option<&TagFeature>
pub fn tag(&self) -> Option<&TagFeature>
Gets a reference to a TagFeature, if any.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Features
impl<'de> Deserialize<'de> for Features
sourcefn 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
sourceimpl IntoIterator for Features
impl IntoIterator for Features
sourceimpl Ord for Features
impl Ord for Features
sourceimpl Packable for Features
impl Packable for Features
sourceimpl PartialOrd<Features> for Features
impl PartialOrd<Features> for Features
sourcefn partial_cmp(&self, other: &Features) -> Option<Ordering>
fn partial_cmp(&self, other: &Features) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Eq for Features
impl StructuralEq for Features
impl StructuralPartialEq for Features
Auto Trait Implementations
impl RefUnwindSafe for Features
impl Send for Features
impl Sync for Features
impl Unpin for Features
impl UnwindSafe for Features
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<P> PackableExt for P where
P: Packable,
impl<P> PackableExt for P where
P: Packable,
sourcefn unpack_verified<T>(
bytes: T
) -> Result<P, UnpackError<<P as Packable>::UnpackError, UnexpectedEOF>> where
T: AsRef<[u8]>,
fn unpack_verified<T>(
bytes: T
) -> Result<P, UnpackError<<P as Packable>::UnpackError, UnexpectedEOF>> where
T: AsRef<[u8]>,
Unpacks this value from a type that implements [AsRef<[u8]>].
sourcefn unpack_unverified<T>(
bytes: T
) -> Result<P, UnpackError<<P as Packable>::UnpackError, UnexpectedEOF>> where
T: AsRef<[u8]>,
fn unpack_unverified<T>(
bytes: T
) -> Result<P, UnpackError<<P as Packable>::UnpackError, UnexpectedEOF>> where
T: AsRef<[u8]>,
Unpacks this value from a type that implements [AsRef<[u8]>] skipping some syntatical checks.
sourcefn packed_len(&self) -> usize
fn packed_len(&self) -> usize
Returns the length in bytes of the value after being packed. The returned value always matches the number of
bytes written using pack. Read more