pub enum DeviceChannel {
App,
Browser,
ThreeDsRequestorInitiated,
}Expand description
Device channel through which the transaction originates.
Variants§
App
01 — App-based (native SDK)
Browser
02 — Browser
ThreeDsRequestorInitiated
03 — 3DS Requestor Initiated (3RI)
Trait Implementations§
Source§impl Clone for DeviceChannel
impl Clone for DeviceChannel
Source§fn clone(&self) -> DeviceChannel
fn clone(&self) -> DeviceChannel
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 DeviceChannel
impl Debug for DeviceChannel
Source§impl<'de> Deserialize<'de> for DeviceChannel
impl<'de> Deserialize<'de> for DeviceChannel
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
Source§impl Hash for DeviceChannel
impl Hash for DeviceChannel
Source§impl PartialEq for DeviceChannel
impl PartialEq for DeviceChannel
Source§fn eq(&self, other: &DeviceChannel) -> bool
fn eq(&self, other: &DeviceChannel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeviceChannel
impl Serialize for DeviceChannel
impl Copy for DeviceChannel
impl Eq for DeviceChannel
impl StructuralPartialEq for DeviceChannel
Auto Trait Implementations§
impl Freeze for DeviceChannel
impl RefUnwindSafe for DeviceChannel
impl Send for DeviceChannel
impl Sync for DeviceChannel
impl Unpin for DeviceChannel
impl UnsafeUnpin for DeviceChannel
impl UnwindSafe for DeviceChannel
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