pub struct PubKeyCredParam {
pub alg: i32,
pub type_: &'static str,
}Expand description
One signature algorithm the relying party will accept.
Fields§
§alg: i32COSE algorithm identifier (e.g., -7 for ES256).
type_: &'static strCredential type (always “public-key” for passkeys).
Trait Implementations§
Source§impl Debug for PubKeyCredParam
impl Debug for PubKeyCredParam
Auto Trait Implementations§
impl Freeze for PubKeyCredParam
impl RefUnwindSafe for PubKeyCredParam
impl Send for PubKeyCredParam
impl Sync for PubKeyCredParam
impl Unpin for PubKeyCredParam
impl UnsafeUnpin for PubKeyCredParam
impl UnwindSafe for PubKeyCredParam
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