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

Fields of BeginGroup

Fields of PrepareForBytes

Fields of ConfirmPreviousTag

Fields of RequiresFIXVersion

Trait Implementations

impl Clone for Rule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more