pub struct DeepLinkingClaim {
pub deep_link_return_url: String,
pub accept_types: Vec<AcceptTypes>,
pub accept_presentation_document_targets: Vec<DocumentTargets>,
pub accept_media_types: Option<String>,
pub accept_multiple: Option<bool>,
pub accept_lineitem: Option<bool>,
pub auto_create: Option<bool>,
pub title: Option<String>,
pub text: Option<String>,
pub data: Option<String>,
}Fields§
§deep_link_return_url: String§accept_types: Vec<AcceptTypes>§accept_presentation_document_targets: Vec<DocumentTargets>§accept_media_types: Option<String>§accept_multiple: Option<bool>§accept_lineitem: Option<bool>§auto_create: Option<bool>§title: Option<String>§text: Option<String>§data: Option<String>Trait Implementations§
Source§impl Clone for DeepLinkingClaim
impl Clone for DeepLinkingClaim
Source§fn clone(&self) -> DeepLinkingClaim
fn clone(&self) -> DeepLinkingClaim
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 DeepLinkingClaim
impl Debug for DeepLinkingClaim
Source§impl<'de> Deserialize<'de> for DeepLinkingClaim
impl<'de> Deserialize<'de> for DeepLinkingClaim
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 DeepLinkingClaim
impl RefUnwindSafe for DeepLinkingClaim
impl Send for DeepLinkingClaim
impl Sync for DeepLinkingClaim
impl Unpin for DeepLinkingClaim
impl UnwindSafe for DeepLinkingClaim
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