pub struct IssuingNetworkTokenDevice {
pub device_fingerprint: Option<String>,
pub ip_address: Option<String>,
pub location: Option<String>,
pub name: Option<String>,
pub phone_number: Option<String>,
pub type_: Option<IssuingNetworkTokenDeviceType>,
}
Fields§
§device_fingerprint: Option<String>
An obfuscated ID derived from the device ID.
ip_address: Option<String>
The IP address of the device at provisioning time.
location: Option<String>
The geographic latitude/longitude coordinates of the device at provisioning time. The format is [+-]decimal/[+-]decimal.
name: Option<String>
The name of the device used for tokenization.
phone_number: Option<String>
The phone number of the device used for tokenization.
type_: Option<IssuingNetworkTokenDeviceType>
The type of device used for tokenization.
Trait Implementations§
Source§impl Clone for IssuingNetworkTokenDevice
impl Clone for IssuingNetworkTokenDevice
Source§fn clone(&self) -> IssuingNetworkTokenDevice
fn clone(&self) -> IssuingNetworkTokenDevice
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 IssuingNetworkTokenDevice
impl Debug for IssuingNetworkTokenDevice
Source§impl FromValueOpt for IssuingNetworkTokenDevice
impl FromValueOpt for IssuingNetworkTokenDevice
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for IssuingNetworkTokenDevice
impl RefUnwindSafe for IssuingNetworkTokenDevice
impl Send for IssuingNetworkTokenDevice
impl Sync for IssuingNetworkTokenDevice
impl Unpin for IssuingNetworkTokenDevice
impl UnwindSafe for IssuingNetworkTokenDevice
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