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§
Source§impl 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§
Source§impl Clone for RegulatedInformation
impl Clone for RegulatedInformation
Source§fn clone(&self) -> RegulatedInformation
fn clone(&self) -> RegulatedInformation
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 RegulatedInformation
impl Debug for RegulatedInformation
Source§impl Default for RegulatedInformation
impl Default for RegulatedInformation
Source§fn default() -> RegulatedInformation
fn default() -> RegulatedInformation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RegulatedInformation
impl<'de> Deserialize<'de> for RegulatedInformation
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 RegulatedInformation
impl PartialEq for RegulatedInformation
Source§impl Serialize for RegulatedInformation
impl Serialize for RegulatedInformation
impl StructuralPartialEq for RegulatedInformation
Auto Trait Implementations§
impl Freeze for RegulatedInformation
impl RefUnwindSafe for RegulatedInformation
impl Send for RegulatedInformation
impl Sync for RegulatedInformation
impl Unpin for RegulatedInformation
impl UnwindSafe for RegulatedInformation
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