Enum fix_rs::rule::Rule
[−]
[src]
pub enum Rule { Nothing, BeginGroup { builder_func: fn() -> Box<BuildMessage + Send>, }, PrepareForBytes { bytes_tag: FieldTag, }, ConfirmPreviousTag { previous_tag: FieldTag, }, RequiresFIXVersion { fix_version: FIXVersion, }, }
Variants
Nothing
BeginGroup
Fields of BeginGroup
builder_func: fn() -> Box<BuildMessage + Send> |
PrepareForBytes
Fields of PrepareForBytes
bytes_tag: FieldTag |
ConfirmPreviousTag
Fields of ConfirmPreviousTag
previous_tag: FieldTag |
RequiresFIXVersion
Fields of RequiresFIXVersion
fix_version: FIXVersion |
Trait Implementations
impl Clone for Rule
[src]
fn clone(&self) -> Rule
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more