pub struct BindingFactorList<C: Ciphersuite>(/* private fields */);Expand description
A list of binding factors and their associated identifiers.
Implementations§
Source§impl<C> BindingFactorList<C>where
C: Ciphersuite,
impl<C> BindingFactorList<C>where
C: Ciphersuite,
Sourcepub fn get(&self, key: &Identifier<C>) -> Option<&BindingFactor<C>>
pub fn get(&self, key: &Identifier<C>) -> Option<&BindingFactor<C>>
Get the BindingFactor for the given identifier, or None if not found.
Trait Implementations§
Source§impl<C: Clone + Ciphersuite> Clone for BindingFactorList<C>
impl<C: Clone + Ciphersuite> Clone for BindingFactorList<C>
Source§fn clone(&self) -> BindingFactorList<C>
fn clone(&self) -> BindingFactorList<C>
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 moreAuto Trait Implementations§
impl<C> Freeze for BindingFactorList<C>
impl<C> RefUnwindSafe for BindingFactorList<C>
impl<C> Send for BindingFactorList<C>
impl<C> Sync for BindingFactorList<C>
impl<C> Unpin for BindingFactorList<C>
impl<C> UnsafeUnpin for BindingFactorList<C>
impl<C> UnwindSafe for BindingFactorList<C>
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