pub struct OfferCustomField {
pub name: String,
pub label: String,
pub field_type: OfferFieldType,
pub value: String,
pub options: Vec<OfferFieldOption>,
}Fields§
§name: String§label: String§field_type: OfferFieldType§value: String§options: Vec<OfferFieldOption>Trait Implementations§
Source§impl Clone for OfferCustomField
impl Clone for OfferCustomField
Source§fn clone(&self) -> OfferCustomField
fn clone(&self) -> OfferCustomField
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 moreAuto Trait Implementations§
impl Freeze for OfferCustomField
impl RefUnwindSafe for OfferCustomField
impl Send for OfferCustomField
impl Sync for OfferCustomField
impl Unpin for OfferCustomField
impl UnwindSafe for OfferCustomField
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