pub struct InboundSigil {
pub identity: Option<String>,
pub verdict: Option<String>,
pub signature: Option<String>,
pub nonce: Option<String>,
pub timestamp: Option<String>,
}Expand description
Inbound SIGIL envelope parsed from the request params._sigil field.
Fields§
§identity: Option<String>§verdict: Option<String>§signature: Option<String>§nonce: Option<String>§timestamp: Option<String>Trait Implementations§
Source§impl Debug for InboundSigil
impl Debug for InboundSigil
Source§impl Default for InboundSigil
impl Default for InboundSigil
Source§fn default() -> InboundSigil
fn default() -> InboundSigil
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InboundSigil
impl<'de> Deserialize<'de> for InboundSigil
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 InboundSigil
impl RefUnwindSafe for InboundSigil
impl Send for InboundSigil
impl Sync for InboundSigil
impl Unpin for InboundSigil
impl UnsafeUnpin for InboundSigil
impl UnwindSafe for InboundSigil
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