[][src]Struct wascap::jwt::CapabilityProvider

pub struct CapabilityProvider {
    pub name: Option<String>,
    pub capid: String,
    pub vendor: String,
    pub rev: Option<i32>,
    pub ver: Option<String>,
    pub target_hashes: HashMap<String, String>,
}

The claims metadata corresponding to a capability provider

Fields

name: Option<String>

A descriptive name for the capability provider

capid: String

The capability contract ID this provider supports

vendor: String

A human-readable string identifying the vendor of this provider (e.g. Redis or Cassandra or NATS etc)

rev: Option<i32>

Indicates a monotonically increasing revision number. Optional.

ver: Option<String>

Indicates a human-friendly version string. Optional.

target_hashes: HashMap<String, String>

The file hashes that correspond to the achitecture-OS target triples for this provider.

Implementations

impl CapabilityProvider[src]

pub fn new(
    name: String,
    capid: String,
    vendor: String,
    rev: Option<i32>,
    ver: Option<String>,
    hashes: HashMap<String, String>
) -> CapabilityProvider
[src]

Trait Implementations

impl Clone for CapabilityProvider[src]

impl Debug for CapabilityProvider[src]

impl Default for CapabilityProvider[src]

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

impl PartialEq<CapabilityProvider> for CapabilityProvider[src]

impl Serialize for CapabilityProvider[src]

impl StructuralPartialEq for CapabilityProvider[src]

impl WascapEntity for CapabilityProvider[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: 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> 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, 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>,