pub struct BeaconUserIdNumber {
pub type_: IdNumberType,
pub value: String,
}Expand description
The ID number associated with a Beacon User.
Fields§
§type_: IdNumberTypeA globally unique and human readable ID type, specific to the country and document category. For more context on this field, see Hybrid Input Validation.
value: StringValue of identity document value typed in by user. Alpha-numeric, with all formatting characters stripped. For specific format requirements by ID type, see Hybrid Input Validation.
Trait Implementations§
Source§impl Clone for BeaconUserIdNumber
impl Clone for BeaconUserIdNumber
Source§fn clone(&self) -> BeaconUserIdNumber
fn clone(&self) -> BeaconUserIdNumber
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 BeaconUserIdNumber
impl Debug for BeaconUserIdNumber
Source§impl<'de> Deserialize<'de> for BeaconUserIdNumber
impl<'de> Deserialize<'de> for BeaconUserIdNumber
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 Display for BeaconUserIdNumber
impl Display for BeaconUserIdNumber
Auto Trait Implementations§
impl Freeze for BeaconUserIdNumber
impl RefUnwindSafe for BeaconUserIdNumber
impl Send for BeaconUserIdNumber
impl Sync for BeaconUserIdNumber
impl Unpin for BeaconUserIdNumber
impl UnwindSafe for BeaconUserIdNumber
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