pub struct GroupSpec {
pub count_tag: Tag,
pub delimiter_tag: Tag,
pub member_tags: &'static [Tag],
}Expand description
Describes one repeating group in the FIX specification.
count_tag: theNO_*tag that precedes the group and carries the instance count.delimiter_tag: the first tag of every instance; its reappearance signals a new instance.member_tags: all tags that may appear inside an instance (includes the delimiter tag).
Fields§
§count_tag: Tag§delimiter_tag: TagAuto Trait Implementations§
impl Freeze for GroupSpec
impl RefUnwindSafe for GroupSpec
impl Send for GroupSpec
impl Sync for GroupSpec
impl Unpin for GroupSpec
impl UnsafeUnpin for GroupSpec
impl UnwindSafe for GroupSpec
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