pub struct AddressFormFilledEventParamsBuilder { /* private fields */ }Expand description
Builder for AddressFormFilledEventParams.
Implementations§
Source§impl AddressFormFilledEventParamsBuilder
impl AddressFormFilledEventParamsBuilder
Sourcepub fn filled_fields(&mut self, value: Vec<FilledField>) -> &mut Self
pub fn filled_fields(&mut self, value: Vec<FilledField>) -> &mut Self
Information about the fields that were filled
Sourcepub fn address_ui(&mut self, value: AddressUi) -> &mut Self
pub fn address_ui(&mut self, value: AddressUi) -> &mut Self
An UI representation of the address used to fill the form. Consists of a 2D array where each child represents an address/profile line.
Sourcepub fn build(
&self,
) -> Result<AddressFormFilledEventParams, AddressFormFilledEventParamsBuilderError>
pub fn build( &self, ) -> Result<AddressFormFilledEventParams, AddressFormFilledEventParamsBuilderError>
Trait Implementations§
Source§impl Clone for AddressFormFilledEventParamsBuilder
impl Clone for AddressFormFilledEventParamsBuilder
Source§fn clone(&self) -> AddressFormFilledEventParamsBuilder
fn clone(&self) -> AddressFormFilledEventParamsBuilder
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 AddressFormFilledEventParamsBuilder
impl RefUnwindSafe for AddressFormFilledEventParamsBuilder
impl Send for AddressFormFilledEventParamsBuilder
impl Sync for AddressFormFilledEventParamsBuilder
impl Unpin for AddressFormFilledEventParamsBuilder
impl UnsafeUnpin for AddressFormFilledEventParamsBuilder
impl UnwindSafe for AddressFormFilledEventParamsBuilder
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