pub enum LayoutItemKind<'a> {
Component(Component<'a>),
Group(Field<'a>, Vec<LayoutItem<'a>>),
Field(Field<'a>),
}Expand description
The kind of element contained in a Message.
Variants§
Component(Component<'a>)
This component item is another component.
Group(Field<'a>, Vec<LayoutItem<'a>>)
This component item is a FIX repeating group.
Field(Field<'a>)
This component item is a FIX field.
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for LayoutItemKind<'a>
impl<'a> Send for LayoutItemKind<'a>
impl<'a> Sync for LayoutItemKind<'a>
impl<'a> Unpin for LayoutItemKind<'a>
impl<'a> UnwindSafe for LayoutItemKind<'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