pub struct EcWebKey {
pub cert: Certificate,
pub key_id: Box<str>,
pub key_ops: Box<[KeyOperation]>,
pub key_type: KeyType,
pub use_case: UseCase,
pub curve: Box<str>,
pub x: Box<[u8]>,
pub y: Box<[u8]>,
}Fields§
§cert: Certificate§key_id: Box<str>§key_ops: Box<[KeyOperation]>§key_type: KeyType§use_case: UseCase§curve: Box<str>§x: Box<[u8]>§y: Box<[u8]>Trait Implementations§
Source§impl<'de> Deserialize<'de> for EcWebKey
impl<'de> Deserialize<'de> for EcWebKey
Source§fn 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
impl Eq for EcWebKey
Auto Trait Implementations§
impl Freeze for EcWebKey
impl RefUnwindSafe for EcWebKey
impl Send for EcWebKey
impl Sync for EcWebKey
impl Unpin for EcWebKey
impl UnsafeUnpin for EcWebKey
impl UnwindSafe for EcWebKey
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