pub struct AddressFormFilledParams {
pub filled_fields: Vec<FilledField>,
pub address_ui: AddressUi,
}Expand description
Emitted when an address form is filled. addressFormFilled
Fields§
§filled_fields: Vec<FilledField>Information about the fields that were filled
address_ui: AddressUiAn UI representation of the address used to fill the form. Consists of a 2D array where each child represents an address/profile line.
Trait Implementations§
Source§impl Clone for AddressFormFilledParams
impl Clone for AddressFormFilledParams
Source§fn clone(&self) -> AddressFormFilledParams
fn clone(&self) -> AddressFormFilledParams
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 Debug for AddressFormFilledParams
impl Debug for AddressFormFilledParams
Source§impl<'de> Deserialize<'de> for AddressFormFilledParams
impl<'de> Deserialize<'de> for AddressFormFilledParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AddressFormFilledParams
impl PartialEq for AddressFormFilledParams
Source§impl Serialize for AddressFormFilledParams
impl Serialize for AddressFormFilledParams
impl StructuralPartialEq for AddressFormFilledParams
Auto Trait Implementations§
impl Freeze for AddressFormFilledParams
impl RefUnwindSafe for AddressFormFilledParams
impl Send for AddressFormFilledParams
impl Sync for AddressFormFilledParams
impl Unpin for AddressFormFilledParams
impl UnsafeUnpin for AddressFormFilledParams
impl UnwindSafe for AddressFormFilledParams
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