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 will pre-fill 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 · 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>
Auto Trait Implementations§
impl Freeze for PaymentLinksResourceCustomFieldsNumeric
impl RefUnwindSafe for PaymentLinksResourceCustomFieldsNumeric
impl Send for PaymentLinksResourceCustomFieldsNumeric
impl Sync for PaymentLinksResourceCustomFieldsNumeric
impl Unpin 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