pub struct AuthorityGrant {
pub protocol_version: u16,
pub issuer: String,
pub key_id: String,
pub operation_id: String,
pub subject: String,
pub session_id: String,
pub risk: SafetyClass,
pub expires_at_ms: i64,
pub policy_generation: String,
pub action_hash: String,
}Fields§
§protocol_version: u16§issuer: String§key_id: String§operation_id: String§subject: String§session_id: String§risk: SafetyClass§expires_at_ms: i64§policy_generation: String§action_hash: StringTrait Implementations§
Source§impl Clone for AuthorityGrant
impl Clone for AuthorityGrant
Source§fn clone(&self) -> AuthorityGrant
fn clone(&self) -> AuthorityGrant
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 AuthorityGrant
impl Debug for AuthorityGrant
Source§impl<'de> Deserialize<'de> for AuthorityGrant
impl<'de> Deserialize<'de> for AuthorityGrant
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
impl Eq for AuthorityGrant
Source§impl PartialEq for AuthorityGrant
impl PartialEq for AuthorityGrant
Source§impl Serialize for AuthorityGrant
impl Serialize for AuthorityGrant
impl StructuralPartialEq for AuthorityGrant
Auto Trait Implementations§
impl Freeze for AuthorityGrant
impl RefUnwindSafe for AuthorityGrant
impl Send for AuthorityGrant
impl Sync for AuthorityGrant
impl Unpin for AuthorityGrant
impl UnsafeUnpin for AuthorityGrant
impl UnwindSafe for AuthorityGrant
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