pub struct UnparsedPublicKey<B: AsRef<[u8]>> { /* private fields */ }
Expand description
An unparsed, possibly malformed, public key for key agreement.
Implementations§
Source§impl<B: AsRef<[u8]>> UnparsedPublicKey<B>
impl<B: AsRef<[u8]>> UnparsedPublicKey<B>
Trait Implementations§
Source§impl<B: Clone + AsRef<[u8]>> Clone for UnparsedPublicKey<B>
impl<B: Clone + AsRef<[u8]>> 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 moreimpl<B: Copy + AsRef<[u8]>> 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