pub struct RonEligibilityRequestOptions {
pub match_: Option<String>,
}
Fields§
§match_: Option<String>
The address matching type. Defaults to ‘loose’ if not provided. ‘loose’ uses a relaxed matching algorithm during address validation. Will attempt to return a validated address match for invalid address inputs. ‘strict’ uses a more aggressive matching algorithm during address validation. Will not return a validated address match for invalid address inputs.
Trait Implementations§
Source§impl Debug for RonEligibilityRequestOptions
impl Debug for RonEligibilityRequestOptions
Source§impl<'de> Deserialize<'de> for RonEligibilityRequestOptions
impl<'de> Deserialize<'de> for RonEligibilityRequestOptions
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 RonEligibilityRequestOptions
impl RefUnwindSafe for RonEligibilityRequestOptions
impl Send for RonEligibilityRequestOptions
impl Sync for RonEligibilityRequestOptions
impl Unpin for RonEligibilityRequestOptions
impl UnwindSafe for RonEligibilityRequestOptions
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