[][src]Struct gantry_protocol::catalog::ActorSummary

pub struct ActorSummary {
    pub public_key: String,
    pub capabilities: Vec<String>,
    pub provider: bool,
    pub tags: Vec<String>,
    pub version: String,
    pub revision: u64,
    pub account: String,
    pub name: String,
}

Represents the metadata on file for a given actor. This metadata is roughly the same as the information contained in the actor's embedded and signed JWT, and does NOT include the actor's raw bytes.

Fields

public_key: Stringcapabilities: Vec<String>provider: booltags: Vec<String>version: Stringrevision: u64account: Stringname: String

Trait Implementations

impl Clone for ActorSummary[src]

impl Debug for ActorSummary[src]

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

impl PartialEq<ActorSummary> for ActorSummary[src]

impl Serialize for ActorSummary[src]

impl StructuralPartialEq for ActorSummary[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.