pub struct ActorClaim {
pub sub: String,
pub signer_type: Option<String>,
pub act: Option<Box<ActorClaim>>,
}Expand description
RFC 8693 actor claim — identifies the acting party in a delegation chain.
Fields§
§sub: StringThe DID of the acting agent.
signer_type: Option<String>Signer type of the actor (auths-specific extension).
act: Option<Box<ActorClaim>>Nested actor claim for multi-hop delegation.
Trait Implementations§
Source§impl Clone for ActorClaim
impl Clone for ActorClaim
Source§fn clone(&self) -> ActorClaim
fn clone(&self) -> ActorClaim
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 ActorClaim
impl Debug for ActorClaim
Source§impl<'de> Deserialize<'de> for ActorClaim
impl<'de> Deserialize<'de> for ActorClaim
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
Auto Trait Implementations§
impl Freeze for ActorClaim
impl RefUnwindSafe for ActorClaim
impl Send for ActorClaim
impl Sync for ActorClaim
impl Unpin for ActorClaim
impl UnsafeUnpin for ActorClaim
impl UnwindSafe for ActorClaim
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