pub struct RegulatedInformation {
pub fields: Vec<RegulatedInformationField>,
}Expand description
RegulatedInformation : The regulated information collected during purchase and used to verify the order.
Fields
fields: Vec<RegulatedInformationField>A list of regulated information fields as collected from the regulatory form.
Implementations
sourceimpl RegulatedInformation
impl RegulatedInformation
sourcepub fn new(fields: Vec<RegulatedInformationField>) -> RegulatedInformation
pub fn new(fields: Vec<RegulatedInformationField>) -> RegulatedInformation
The regulated information collected during purchase and used to verify the order.
Trait Implementations
sourceimpl Clone for RegulatedInformation
impl Clone for RegulatedInformation
sourcefn clone(&self) -> RegulatedInformation
fn clone(&self) -> RegulatedInformation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RegulatedInformation
impl Debug for RegulatedInformation
sourceimpl Default for RegulatedInformation
impl Default for RegulatedInformation
sourcefn default() -> RegulatedInformation
fn default() -> RegulatedInformation
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for RegulatedInformation
impl<'de> Deserialize<'de> for RegulatedInformation
sourcefn 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
sourceimpl PartialEq<RegulatedInformation> for RegulatedInformation
impl PartialEq<RegulatedInformation> for RegulatedInformation
sourcefn eq(&self, other: &RegulatedInformation) -> bool
fn eq(&self, other: &RegulatedInformation) -> bool
sourceimpl Serialize for RegulatedInformation
impl Serialize for RegulatedInformation
impl StructuralPartialEq for RegulatedInformation
Auto Trait Implementations
impl RefUnwindSafe for RegulatedInformation
impl Send for RegulatedInformation
impl Sync for RegulatedInformation
impl Unpin for RegulatedInformation
impl UnwindSafe for RegulatedInformation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more