pub struct ContextClaim {
pub id: String,
pub label: Option<String>,
pub title: Option<String>,
pub type: Option<Vec<String>>,
pub validation_context: Option<String>,
pub errors: Option<IdTokenErrors>,
}Fields§
§id: String§label: Option<String>§title: Option<String>§type: Option<Vec<String>>§validation_context: Option<String>§errors: Option<IdTokenErrors>Trait Implementations§
Source§impl Clone for ContextClaim
impl Clone for ContextClaim
Source§fn clone(&self) -> ContextClaim
fn clone(&self) -> ContextClaim
Returns a duplicate 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 ContextClaim
impl Debug for ContextClaim
Source§impl<'de> Deserialize<'de> for ContextClaim
impl<'de> Deserialize<'de> for ContextClaim
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
Auto Trait Implementations§
impl Freeze for ContextClaim
impl RefUnwindSafe for ContextClaim
impl Send for ContextClaim
impl Sync for ContextClaim
impl Unpin for ContextClaim
impl UnwindSafe for ContextClaim
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