Struct UnverifiedContext
pub struct UnverifiedContext(pub HashMap<String, Option<UnverifiedContextValue>>);Expand description
A loose, schema‑free context map that can carry scalars, arrays, and nested maps.
Tuple Fields§
§0: HashMap<String, Option<UnverifiedContextValue>>Trait Implementations§
Source§impl Clone for UnverifiedContext
impl Clone for UnverifiedContext
Source§fn clone(&self) -> UnverifiedContext
fn clone(&self) -> UnverifiedContext
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 UnverifiedContext
impl Debug for UnverifiedContext
Source§impl Default for UnverifiedContext
impl Default for UnverifiedContext
Source§fn default() -> UnverifiedContext
fn default() -> UnverifiedContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnverifiedContext
impl<'de> Deserialize<'de> for UnverifiedContext
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnverifiedContext, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnverifiedContext, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UnverifiedContext
impl PartialEq for UnverifiedContext
Source§fn eq(&self, other: &UnverifiedContext) -> bool
fn eq(&self, other: &UnverifiedContext) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UnverifiedContext
impl Serialize for UnverifiedContext
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for UnverifiedContext
Auto Trait Implementations§
impl Freeze for UnverifiedContext
impl RefUnwindSafe for UnverifiedContext
impl Send for UnverifiedContext
impl Sync for UnverifiedContext
impl Unpin for UnverifiedContext
impl UnsafeUnpin for UnverifiedContext
impl UnwindSafe for UnverifiedContext
Blanket Implementations§
impl<T> AuthStrategyBounds for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more