[][src]Struct networking::encryption::BigNum

pub struct BigNum { /* fields omitted */ }

the purpose of this structure is to provide an implementation of BigUint, as is used by the rsa crate, that can be serialized for the sake of storing an retriving rsa keys

Implementations

impl BigNum[src]

Trait Implementations

impl Clone for BigNum[src]

impl Debug for BigNum[src]

impl<'de> Deserialize<'de> for BigNum[src]

impl Display for BigNum[src]

impl Eq for BigNum[src]

impl<'_> From<&'_ BigNum> for BigUint[src]

impl<'_> From<&'_ BigUint> for BigNum[src]

impl Hash for BigNum[src]

impl Ord for BigNum[src]

impl PartialEq<BigNum> for BigNum[src]

impl PartialEq<BigNum> for BigUint[src]

impl PartialEq<BigUint> for BigNum[src]

impl PartialOrd<BigNum> for BigNum[src]

impl Serialize for BigNum[src]

impl StructuralEq for BigNum[src]

impl StructuralPartialEq for BigNum[src]

Auto Trait Implementations

impl RefUnwindSafe for BigNum

impl Send for BigNum

impl Sync for BigNum

impl Unpin for BigNum

impl UnwindSafe for BigNum

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<K> HashKey for K where
    K: 'static + ToString + Hash + PartialEq<K> + Eq + Clone + Send + Sync
[src]

impl<V> HashValue for V where
    V: 'static + Debug + Serialize + DeserializeOwned + Send + Clone + Sync
[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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>,