pub struct Field<'a>(/* private fields */);Expand description
Implementations§
Source§impl<'a> Field<'a>
impl<'a> Field<'a>
pub fn doc_url_onixs(&self, version: &str) -> String
pub fn is_num_in_group(&self) -> bool
Sourcepub fn fix_datatype(&self) -> FixDatatype
pub fn fix_datatype(&self) -> FixDatatype
Returns the FixDatatype of self.
Sourcepub fn name(&self) -> &str
pub fn name(&self) -> &str
Returns the name of self. Field names are unique across each FIX
Dictionary.
Sourcepub fn tag(&self) -> TagU32
pub fn tag(&self) -> TagU32
Returns the numeric tag of self. Field tags are unique across each FIX
Dictionary.
Sourcepub fn enums(&self) -> Option<impl Iterator<Item = FieldEnum<'_>>>
pub fn enums(&self) -> Option<impl Iterator<Item = FieldEnum<'_>>>
In case this field allows any value, it returns None; otherwise; it
returns an Iterator of all allowed values.
pub fn data_tag(&self) -> Option<TagU32>
pub fn required_in_xml_messages(&self) -> bool
pub fn description(&self) -> Option<&str>
Trait Implementations§
Source§impl<'a> IsFieldDefinition for Field<'a>
impl<'a> IsFieldDefinition for Field<'a>
impl<'a> Copy for Field<'a>
Auto Trait Implementations§
impl<'a> Freeze for Field<'a>
impl<'a> RefUnwindSafe for Field<'a>
impl<'a> Send for Field<'a>
impl<'a> Sync for Field<'a>
impl<'a> Unpin for Field<'a>
impl<'a> UnwindSafe for Field<'a>
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