#[non_exhaustive]pub struct UserRiskRankOptions {
pub client_ip: Option<String>,
pub mobile_no: Option<String>,
pub email_address: Option<String>,
pub extended_info: Option<String>,
pub is_test: Option<bool>,
}Expand description
Options for getUserRiskRank
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.client_ip: Option<String>Client IP address
mobile_no: Option<String>Mobile number
email_address: Option<String>Email address
extended_info: Option<String>Extended info string
is_test: Option<bool>Whether this is a test request
Trait Implementations§
Source§impl Clone for UserRiskRankOptions
impl Clone for UserRiskRankOptions
Source§fn clone(&self) -> UserRiskRankOptions
fn clone(&self) -> UserRiskRankOptions
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 UserRiskRankOptions
impl Debug for UserRiskRankOptions
Source§impl Default for UserRiskRankOptions
impl Default for UserRiskRankOptions
Source§fn default() -> UserRiskRankOptions
fn default() -> UserRiskRankOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UserRiskRankOptions
impl RefUnwindSafe for UserRiskRankOptions
impl Send for UserRiskRankOptions
impl Sync for UserRiskRankOptions
impl Unpin for UserRiskRankOptions
impl UnsafeUnpin for UserRiskRankOptions
impl UnwindSafe for UserRiskRankOptions
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