pub struct ValidateResponse {
pub jwt: Option<Box<Jwt>>,
}
Expand description
ValidateResponse :
Fields§
§jwt: Option<Box<Jwt>>
Implementations§
source§impl ValidateResponse
impl ValidateResponse
sourcepub fn new() -> ValidateResponse
pub fn new() -> ValidateResponse
Trait Implementations§
source§impl Clone for ValidateResponse
impl Clone for ValidateResponse
source§fn clone(&self) -> ValidateResponse
fn clone(&self) -> ValidateResponse
Returns a copy of the value. Read more
1.0.0 · 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 ValidateResponse
impl Debug for ValidateResponse
source§impl Default for ValidateResponse
impl Default for ValidateResponse
source§fn default() -> ValidateResponse
fn default() -> ValidateResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ValidateResponse
impl<'de> Deserialize<'de> for ValidateResponse
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 ValidateResponse
impl PartialEq for ValidateResponse
source§fn eq(&self, other: &ValidateResponse) -> bool
fn eq(&self, other: &ValidateResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ValidateResponse
impl Serialize for ValidateResponse
impl StructuralPartialEq for ValidateResponse
Auto Trait Implementations§
impl RefUnwindSafe for ValidateResponse
impl Send for ValidateResponse
impl Sync for ValidateResponse
impl Unpin for ValidateResponse
impl UnwindSafe for ValidateResponse
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