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 for the field.
field_label: StringThe name for 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 will contain a URL to download the attachment here.
Implementations
Trait Implementations
sourceimpl Clone for RegulatedInformationField
impl Clone for RegulatedInformationField
sourcefn clone(&self) -> RegulatedInformationField
fn clone(&self) -> RegulatedInformationField
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 RegulatedInformationField
impl Debug for RegulatedInformationField
sourceimpl Default for RegulatedInformationField
impl Default for RegulatedInformationField
sourcefn default() -> RegulatedInformationField
fn default() -> RegulatedInformationField
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for RegulatedInformationField
impl<'de> Deserialize<'de> for RegulatedInformationField
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<RegulatedInformationField> for RegulatedInformationField
impl PartialEq<RegulatedInformationField> for RegulatedInformationField
sourcefn eq(&self, other: &RegulatedInformationField) -> bool
fn eq(&self, other: &RegulatedInformationField) -> bool
sourceimpl Serialize for RegulatedInformationField
impl Serialize for RegulatedInformationField
impl StructuralPartialEq for RegulatedInformationField
Auto Trait Implementations
impl RefUnwindSafe for RegulatedInformationField
impl Send for RegulatedInformationField
impl Sync for RegulatedInformationField
impl Unpin for RegulatedInformationField
impl UnwindSafe for RegulatedInformationField
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