pub struct CapabilityTokenState {
pub decision: CapabilityTokenDecision,
pub valid_structure: bool,
pub audience_bound: bool,
pub scope_bound: bool,
pub operation_bound: bool,
pub not_expired: bool,
pub not_revoked: bool,
pub policy_allowed: bool,
pub attestation_linked: bool,
}Expand description
Capability-token state supplied by pai-axiom.
Fields§
§decision: CapabilityTokenDecisionFinal token decision.
valid_structure: boolToken structure was valid.
audience_bound: boolToken audience matched Cortex.
scope_bound: boolToken scope matched the operation.
operation_bound: boolToken operation binding matched the receipt.
not_expired: boolToken was not expired at execution time.
not_revoked: boolToken was not revoked at execution time.
policy_allowed: boolPolicy allowed the operation.
attestation_linked: boolAttestation link was present and verified.
Trait Implementations§
Source§impl Clone for CapabilityTokenState
impl Clone for CapabilityTokenState
Source§fn clone(&self) -> CapabilityTokenState
fn clone(&self) -> CapabilityTokenState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CapabilityTokenState
impl Debug for CapabilityTokenState
Source§impl<'de> Deserialize<'de> for CapabilityTokenState
impl<'de> Deserialize<'de> for CapabilityTokenState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for CapabilityTokenState
impl JsonSchema for CapabilityTokenState
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for CapabilityTokenState
impl PartialEq for CapabilityTokenState
Source§fn eq(&self, other: &CapabilityTokenState) -> bool
fn eq(&self, other: &CapabilityTokenState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CapabilityTokenState
impl Serialize for CapabilityTokenState
impl Eq for CapabilityTokenState
impl StructuralPartialEq for CapabilityTokenState
Auto Trait Implementations§
impl Freeze for CapabilityTokenState
impl RefUnwindSafe for CapabilityTokenState
impl Send for CapabilityTokenState
impl Sync for CapabilityTokenState
impl Unpin for CapabilityTokenState
impl UnsafeUnpin for CapabilityTokenState
impl UnwindSafe for CapabilityTokenState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more