pub enum SignData {
Rsa1024(GenericArray<u32, U32>),
Rsa2048(GenericArray<u32, U64>),
Rsa3072(GenericArray<u32, U96>),
Ecc(GenericArray<u32, U16>),
}
Variants§
Rsa1024(GenericArray<u32, U32>)
Rsa2048(GenericArray<u32, U64>)
Rsa3072(GenericArray<u32, U96>)
Ecc(GenericArray<u32, U16>)
Implementations§
Trait Implementations§
Source§impl ObjectFormat for SignData
impl ObjectFormat for SignData
fn format_json(&self) -> Value
impl Eq for SignData
impl StructuralPartialEq for SignData
Auto Trait Implementations§
impl Freeze for SignData
impl RefUnwindSafe for SignData
impl Send for SignData
impl Sync for SignData
impl Unpin for SignData
impl UnwindSafe for SignData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more