pub enum SignatureBackend {
Native,
Swift,
Wasm,
Kotlin,
SecureEnclave,
}Expand description
Backend implementation that performed a signature operation.
Variants§
Native
Pure-Rust native backend.
Swift
Swift/Apple platform backend.
Wasm
WebAssembly backend.
Kotlin
Kotlin/Android platform backend.
SecureEnclave
Apple Secure Enclave hardware-backed backend.
Trait Implementations§
Source§impl Clone for SignatureBackend
impl Clone for SignatureBackend
Source§fn clone(&self) -> SignatureBackend
fn clone(&self) -> SignatureBackend
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 moreimpl Copy for SignatureBackend
Source§impl Debug for SignatureBackend
impl Debug for SignatureBackend
Source§impl Display for SignatureBackend
impl Display for SignatureBackend
impl Eq for SignatureBackend
Source§impl PartialEq for SignatureBackend
impl PartialEq for SignatureBackend
impl StructuralPartialEq for SignatureBackend
Auto Trait Implementations§
impl Freeze for SignatureBackend
impl RefUnwindSafe for SignatureBackend
impl Send for SignatureBackend
impl Sync for SignatureBackend
impl Unpin for SignatureBackend
impl UnsafeUnpin for SignatureBackend
impl UnwindSafe for SignatureBackend
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