pub struct FieldSpec {
pub number: u32,
pub name: String,
pub type: FieldType,
pub values: Vec<FieldAllowedValue>,
}
Expand description
XML <field>
description.
Fields§
§number: u32
FIX technical tag number.
name: String
FIX dictionary tag name.
type: FieldType
Value type.
values: Vec<FieldAllowedValue>
Possible values in case there is a restricted list.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FieldSpec
impl RefUnwindSafe for FieldSpec
impl Send for FieldSpec
impl Sync for FieldSpec
impl Unpin for FieldSpec
impl UnwindSafe for FieldSpec
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