Struct keyplace::AgentId[][src]

pub struct AgentId {
    pub pubkey: [u8; 32],
}

Fields

pubkey: [u8; 32]

Implementations

impl AgentId[src]

pub fn pubkey_short(&self) -> String[src]

pub fn from_base64(input: &str) -> Result<Self, Error>[src]

Trait Implementations

impl AsRef<[u8]> for AgentId[src]

impl Clone for AgentId[src]

impl Debug for AgentId[src]

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

impl Display for AgentId[src]

impl Eq for AgentId[src]

impl Ord for AgentId[src]

impl PartialEq<AgentId> for AgentId[src]

impl PartialOrd<AgentId> for AgentId[src]

impl Serialize for AgentId[src]

impl StructuralEq for AgentId[src]

impl StructuralPartialEq for AgentId[src]

Auto Trait Implementations

impl RefUnwindSafe for AgentId

impl Send for AgentId

impl Sync for AgentId

impl Unpin for AgentId

impl UnwindSafe for AgentId

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<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

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