[][src]Struct waxosuit_codec::capabilities::ModuleIdentity

pub struct ModuleIdentity {
    pub module: String,
    pub issuer: String,
    pub capabilities: Vec<String>,
}

Represents a unique identity for a guest module

Fields

module: String

The primary key of the module in prefix-encoded format (will start with the letter 'M')

issuer: String

The primary key of the issuer/signer of the module. This will start with any one of the valid signer prefixes

capabilities: Vec<String>

A list of capability attestations for the module

Trait Implementations

impl Clone for ModuleIdentity[src]

impl Debug for ModuleIdentity[src]

impl Serialize for ModuleIdentity[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]