[][src]Struct wedpr_l_protos::generated::common::Keypair

pub struct Keypair {
    pub public_key: Vec<u8>,
    pub private_key: Vec<u8>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Generated files are compatible only with the same version of protobuf runtime.

Fields

public_key: Vec<u8>private_key: Vec<u8>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Keypair[src]

pub fn new() -> Keypair[src]

pub fn get_public_key(&self) -> &[u8][src]

pub fn clear_public_key(&mut self)[src]

pub fn set_public_key(&mut self, v: Vec<u8>)[src]

pub fn mut_public_key(&mut self) -> &mut Vec<u8>[src]

pub fn take_public_key(&mut self) -> Vec<u8>[src]

pub fn get_private_key(&self) -> &[u8][src]

pub fn clear_private_key(&mut self)[src]

pub fn set_private_key(&mut self, v: Vec<u8>)[src]

pub fn mut_private_key(&mut self) -> &mut Vec<u8>[src]

pub fn take_private_key(&mut self) -> Vec<u8>[src]

Trait Implementations

impl Clear for Keypair[src]

impl Clone for Keypair[src]

impl Debug for Keypair[src]

impl Default for Keypair[src]

impl<'a> Default for &'a Keypair[src]

impl Message for Keypair[src]

impl PartialEq<Keypair> for Keypair[src]

impl ProtobufValue for Keypair[src]

impl StructuralPartialEq for Keypair[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,