pub struct Ed25519PkiSignature(/* private fields */);Trait Implementations§
Source§impl SignatureBitStringEncoding for Ed25519PkiSignature
impl SignatureBitStringEncoding for Ed25519PkiSignature
Source§fn to_bitstring(&self) -> Result<BitString>
fn to_bitstring(&self) -> Result<BitString>
BitString encoding for this signature.Source§impl Signer<Ed25519PkiSignature> for Ed25519PkiKeypair
impl Signer<Ed25519PkiSignature> for Ed25519PkiKeypair
Auto Trait Implementations§
impl Freeze for Ed25519PkiSignature
impl RefUnwindSafe for Ed25519PkiSignature
impl Send for Ed25519PkiSignature
impl Sync for Ed25519PkiSignature
impl Unpin for Ed25519PkiSignature
impl UnwindSafe for Ed25519PkiSignature
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> 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