pub struct AuthLeaseValidationResult {
pub ok: bool,
pub lease_id: Option<String>,
pub kid: Option<String>,
pub code: Option<String>,
pub message: Option<String>,
pub expires_at_ms: Option<i64>,
}Fields§
§ok: bool§lease_id: Option<String>§kid: Option<String>§code: Option<String>§message: Option<String>§expires_at_ms: Option<i64>Implementations§
Trait Implementations§
Source§impl Clone for AuthLeaseValidationResult
impl Clone for AuthLeaseValidationResult
Source§fn clone(&self) -> AuthLeaseValidationResult
fn clone(&self) -> AuthLeaseValidationResult
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 AuthLeaseValidationResult
impl Debug for AuthLeaseValidationResult
Source§impl<'de> Deserialize<'de> for AuthLeaseValidationResult
impl<'de> Deserialize<'de> for AuthLeaseValidationResult
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 PartialEq for AuthLeaseValidationResult
impl PartialEq for AuthLeaseValidationResult
Source§fn eq(&self, other: &AuthLeaseValidationResult) -> bool
fn eq(&self, other: &AuthLeaseValidationResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AuthLeaseValidationResult
impl StructuralPartialEq for AuthLeaseValidationResult
Auto Trait Implementations§
impl Freeze for AuthLeaseValidationResult
impl RefUnwindSafe for AuthLeaseValidationResult
impl Send for AuthLeaseValidationResult
impl Sync for AuthLeaseValidationResult
impl Unpin for AuthLeaseValidationResult
impl UnsafeUnpin for AuthLeaseValidationResult
impl UnwindSafe for AuthLeaseValidationResult
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