pub struct RegulatedInformationField {
pub field_id: String,
pub field_label: String,
pub field_type: FieldType,
pub field_value: String,
}Expand description
RegulatedInformationField : A field collected from the regulatory form.
Fields§
§field_id: StringThe unique identifier of the field.
field_label: StringThe name of the field.
field_type: FieldTypeThe type of field.
field_value: StringThe content of the field as collected in regulatory form. Note that FileAttachment type fields contain a URL where you can download the attachment.
Implementations§
Trait Implementations§
Source§impl Clone for RegulatedInformationField
impl Clone for RegulatedInformationField
Source§fn clone(&self) -> RegulatedInformationField
fn clone(&self) -> RegulatedInformationField
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 RegulatedInformationField
impl Debug for RegulatedInformationField
Source§impl Default for RegulatedInformationField
impl Default for RegulatedInformationField
Source§fn default() -> RegulatedInformationField
fn default() -> RegulatedInformationField
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RegulatedInformationField
impl<'de> Deserialize<'de> for RegulatedInformationField
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
impl StructuralPartialEq for RegulatedInformationField
Auto Trait Implementations§
impl Freeze for RegulatedInformationField
impl RefUnwindSafe for RegulatedInformationField
impl Send for RegulatedInformationField
impl Sync for RegulatedInformationField
impl Unpin for RegulatedInformationField
impl UnsafeUnpin for RegulatedInformationField
impl UnwindSafe for RegulatedInformationField
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