pub struct Keyset<E: Ecdh> {
pub e: E,
pub s: Option<E>,
pub re: Option<E::Pk>,
pub rs: Option<E::Pk>,
}
Fields§
§e: E
§s: Option<E>
§re: Option<E::Pk>
§rs: Option<E::Pk>
Implementations§
Trait Implementations§
source§impl<E: PartialEq + Ecdh> PartialEq for Keyset<E>
impl<E: PartialEq + Ecdh> PartialEq for Keyset<E>
impl<E: Eq + Ecdh> Eq for Keyset<E>
impl<E: Ecdh> StructuralPartialEq for Keyset<E>
Auto Trait Implementations§
impl<E> Freeze for Keyset<E>
impl<E> RefUnwindSafe for Keyset<E>
impl<E> Send for Keyset<E>
impl<E> Sync for Keyset<E>
impl<E> Unpin for Keyset<E>
impl<E> UnwindSafe for Keyset<E>
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