pub struct DeepLinkPayload {
pub iss: String,
pub aud: String,
pub azp: String,
pub exp: i64,
pub iat: i64,
pub nonce: String,
pub message_type: String,
pub version: String,
pub deployment_id: String,
pub content_items: Vec<ContentItem>,
pub data: Option<String>,
}Fields§
§iss: String§aud: String§azp: String§exp: i64§iat: i64§nonce: String§message_type: String§version: String§deployment_id: String§content_items: Vec<ContentItem>§data: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for DeepLinkPayload
impl Clone for DeepLinkPayload
Source§fn clone(&self) -> DeepLinkPayload
fn clone(&self) -> DeepLinkPayload
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 DeepLinkPayload
impl Debug for DeepLinkPayload
Source§impl<'de> Deserialize<'de> for DeepLinkPayload
impl<'de> Deserialize<'de> for DeepLinkPayload
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 DeepLinkPayload
impl RefUnwindSafe for DeepLinkPayload
impl Send for DeepLinkPayload
impl Sync for DeepLinkPayload
impl Unpin for DeepLinkPayload
impl UnwindSafe for DeepLinkPayload
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