pub struct PaymentLinksResourceCustomFieldsNumeric {
pub default_value: Option<String>,
pub maximum_length: Option<i64>,
pub minimum_length: Option<i64>,
}Fields§
§default_value: Option<String>The value that pre-fills the field on the payment page.
maximum_length: Option<i64>The maximum character length constraint for the customer’s input.
minimum_length: Option<i64>The minimum character length requirement for the customer’s input.
Trait Implementations§
Source§impl Clone for PaymentLinksResourceCustomFieldsNumeric
impl Clone for PaymentLinksResourceCustomFieldsNumeric
Source§fn clone(&self) -> PaymentLinksResourceCustomFieldsNumeric
fn clone(&self) -> PaymentLinksResourceCustomFieldsNumeric
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 FromValueOpt for PaymentLinksResourceCustomFieldsNumeric
impl FromValueOpt for PaymentLinksResourceCustomFieldsNumeric
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentLinksResourceCustomFieldsNumeric
impl PartialEq for PaymentLinksResourceCustomFieldsNumeric
Source§fn eq(&self, other: &PaymentLinksResourceCustomFieldsNumeric) -> bool
fn eq(&self, other: &PaymentLinksResourceCustomFieldsNumeric) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentLinksResourceCustomFieldsNumeric
impl StructuralPartialEq for PaymentLinksResourceCustomFieldsNumeric
Auto Trait Implementations§
impl Freeze for PaymentLinksResourceCustomFieldsNumeric
impl RefUnwindSafe for PaymentLinksResourceCustomFieldsNumeric
impl Send for PaymentLinksResourceCustomFieldsNumeric
impl Sync for PaymentLinksResourceCustomFieldsNumeric
impl Unpin for PaymentLinksResourceCustomFieldsNumeric
impl UnsafeUnpin for PaymentLinksResourceCustomFieldsNumeric
impl UnwindSafe for PaymentLinksResourceCustomFieldsNumeric
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