pub struct TmpUserData {
pub access_id: Option<String>,
pub creation_date: Option<String>,
pub custom_ttl: Option<i64>,
pub dynamic_secret_type: Option<String>,
pub encrypted_secret: Option<String>,
pub host: Option<String>,
pub id: Option<String>,
pub sub_claims: Option<HashMap<String, Vec<String>>>,
}Fields§
§access_id: Option<String>§creation_date: Option<String>§custom_ttl: Option<i64>§dynamic_secret_type: Option<String>§encrypted_secret: Option<String>§host: Option<String>§id: Option<String>§sub_claims: Option<HashMap<String, Vec<String>>>Implementations§
Source§impl TmpUserData
impl TmpUserData
pub fn new() -> TmpUserData
Trait Implementations§
Source§impl Clone for TmpUserData
impl Clone for TmpUserData
Source§fn clone(&self) -> TmpUserData
fn clone(&self) -> TmpUserData
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 TmpUserData
impl Debug for TmpUserData
Source§impl Default for TmpUserData
impl Default for TmpUserData
Source§fn default() -> TmpUserData
fn default() -> TmpUserData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TmpUserData
impl<'de> Deserialize<'de> for TmpUserData
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 TmpUserData
impl PartialEq for TmpUserData
Source§fn eq(&self, other: &TmpUserData) -> bool
fn eq(&self, other: &TmpUserData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TmpUserData
impl Serialize for TmpUserData
impl StructuralPartialEq for TmpUserData
Auto Trait Implementations§
impl Freeze for TmpUserData
impl RefUnwindSafe for TmpUserData
impl Send for TmpUserData
impl Sync for TmpUserData
impl Unpin for TmpUserData
impl UnsafeUnpin for TmpUserData
impl UnwindSafe for TmpUserData
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