pub struct PaymentLinksResourceCustomFieldsText {
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 PaymentLinksResourceCustomFieldsText
impl Clone for PaymentLinksResourceCustomFieldsText
Source§fn clone(&self) -> PaymentLinksResourceCustomFieldsText
fn clone(&self) -> PaymentLinksResourceCustomFieldsText
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 PaymentLinksResourceCustomFieldsText
impl FromValueOpt for PaymentLinksResourceCustomFieldsText
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentLinksResourceCustomFieldsText
impl RefUnwindSafe for PaymentLinksResourceCustomFieldsText
impl Send for PaymentLinksResourceCustomFieldsText
impl Sync for PaymentLinksResourceCustomFieldsText
impl Unpin for PaymentLinksResourceCustomFieldsText
impl UnwindSafe for PaymentLinksResourceCustomFieldsText
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