pub enum CredentialFilter {
None,
ById(Vec<u8>),
ByRp(String),
ByHash([u8; 32]),
}Expand description
Filter criteria for reading credentials
Variants§
None
No filter - return all credentials
ById(Vec<u8>)
Filter by credential ID
ByRp(String)
Filter by relying party ID
ByHash([u8; 32])
Filter by relying party ID hash
Trait Implementations§
Source§impl Clone for CredentialFilter
impl Clone for CredentialFilter
Source§fn clone(&self) -> CredentialFilter
fn clone(&self) -> CredentialFilter
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 moreAuto Trait Implementations§
impl Freeze for CredentialFilter
impl RefUnwindSafe for CredentialFilter
impl Send for CredentialFilter
impl Sync for CredentialFilter
impl Unpin for CredentialFilter
impl UnsafeUnpin for CredentialFilter
impl UnwindSafe for CredentialFilter
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