Struct ring::agreement::UnparsedPublicKey
source · pub struct UnparsedPublicKey<B> {
algorithm: &'static Algorithm,
bytes: B,
}
Expand description
An unparsed, possibly malformed, public key for key agreement.
Fields§
§algorithm: &'static Algorithm
§bytes: B
Implementations§
Trait Implementations§
source§impl<B> AsRef<[u8]> for UnparsedPublicKey<B>
impl<B> AsRef<[u8]> for UnparsedPublicKey<B>
source§impl<B: Clone> Clone for UnparsedPublicKey<B>
impl<B: Clone> Clone for UnparsedPublicKey<B>
source§fn clone(&self) -> UnparsedPublicKey<B>
fn clone(&self) -> UnparsedPublicKey<B>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<B> Debug for UnparsedPublicKey<B>
impl<B> Debug for UnparsedPublicKey<B>
impl<B: Copy> Copy for UnparsedPublicKey<B>
Auto Trait Implementations§
impl<B> Freeze for UnparsedPublicKey<B>where
B: Freeze,
impl<B> RefUnwindSafe for UnparsedPublicKey<B>where
B: RefUnwindSafe,
impl<B> Send for UnparsedPublicKey<B>where
B: Send,
impl<B> Sync for UnparsedPublicKey<B>where
B: Sync,
impl<B> Unpin for UnparsedPublicKey<B>where
B: Unpin,
impl<B> UnwindSafe for UnparsedPublicKey<B>where
B: UnwindSafe,
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