Struct webauthn_rs_core::interface::AttestationCaList
source · [−]pub struct AttestationCaList {
pub cas: Vec<AttestationCa>,
}Expand description
A list of AttestationCas and associated options.
Fields
cas: Vec<AttestationCa>The list
Implementations
sourceimpl AttestationCaList
impl AttestationCaList
sourcepub fn strict() -> Self
pub fn strict() -> Self
This is a list of CA’s who’s manufactured authenticators are of the highest quality and guarantees for users and RP’s. These are devices that not only are secure, but user friendly, consistent, and correct.
sourcepub fn apple_and_android() -> Self
pub fn apple_and_android() -> Self
Apple iOS/macOS and Android CAs
sourcepub fn all_known_cas() -> Self
pub fn all_known_cas() -> Self
All CA’s known to the Webauthn-RS project.
Trait Implementations
sourceimpl Clone for AttestationCaList
impl Clone for AttestationCaList
sourcefn clone(&self) -> AttestationCaList
fn clone(&self) -> AttestationCaList
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for AttestationCaList
impl Debug for AttestationCaList
sourceimpl<'de> Deserialize<'de> for AttestationCaList
impl<'de> Deserialize<'de> for AttestationCaList
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 Serialize for AttestationCaList
impl Serialize for AttestationCaList
Auto Trait Implementations
impl RefUnwindSafe for AttestationCaList
impl Send for AttestationCaList
impl Sync for AttestationCaList
impl Unpin for AttestationCaList
impl UnwindSafe for AttestationCaList
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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