pub struct AuthLeaseIssueResponse {
pub ok: bool,
pub token: String,
pub protected_header: AuthLeaseProtectedHeader,
pub payload: AuthLeasePayload,
}Fields§
§ok: bool§token: String§protected_header: AuthLeaseProtectedHeader§payload: AuthLeasePayloadTrait Implementations§
Source§impl Clone for AuthLeaseIssueResponse
impl Clone for AuthLeaseIssueResponse
Source§fn clone(&self) -> AuthLeaseIssueResponse
fn clone(&self) -> AuthLeaseIssueResponse
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 AuthLeaseIssueResponse
impl Debug for AuthLeaseIssueResponse
Source§impl<'de> Deserialize<'de> for AuthLeaseIssueResponse
impl<'de> Deserialize<'de> for AuthLeaseIssueResponse
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 AuthLeaseIssueResponse
impl PartialEq for AuthLeaseIssueResponse
Source§fn eq(&self, other: &AuthLeaseIssueResponse) -> bool
fn eq(&self, other: &AuthLeaseIssueResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuthLeaseIssueResponse
impl Serialize for AuthLeaseIssueResponse
impl StructuralPartialEq for AuthLeaseIssueResponse
Auto Trait Implementations§
impl Freeze for AuthLeaseIssueResponse
impl RefUnwindSafe for AuthLeaseIssueResponse
impl Send for AuthLeaseIssueResponse
impl Sync for AuthLeaseIssueResponse
impl Unpin for AuthLeaseIssueResponse
impl UnsafeUnpin for AuthLeaseIssueResponse
impl UnwindSafe for AuthLeaseIssueResponse
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