pub enum Signal {
Show 17 variants
BeginMessage,
EndMessage,
BeginComposite,
EndComposite,
BeginField,
EndField,
BeginGroup,
EndGroup,
BeginEnum,
ValidValue,
EndEnum,
BeginSet,
Choice,
EndSet,
BeginVarData,
EndVarData,
Encoding,
}Variants§
BeginMessage
Denotes the beginning of a message.
EndMessage
Denotes the end of a message.
BeginComposite
Denotes the beginning of a composite.
EndComposite
Denotes the end of a composite.
BeginField
Denotes the beginning of a field.
EndField
Denotes the end of a field.
BeginGroup
Denotes the beginning of a repeating group.
EndGroup
Denotes the end of a repeating group.
BeginEnum
Denotes the beginning of an enumeration.
ValidValue
Denotes a value of an enumeration.
EndEnum
Denotes the end of an enumeration.
BeginSet
Denotes the beginning of a bitset.
Choice
Denotes a bit value (choice) of a bitset.
EndSet
Denotes the end of a bitset.
BeginVarData
Denotes the beginning of a variable data block.
EndVarData
Denotes the end of a variable data block.
Encoding
Denotes the {@link uk.co.real_logic.sbe.ir.Token} is an encoding.
Implementations§
Trait Implementations§
impl Copy for Signal
impl Eq for Signal
impl StructuralPartialEq for Signal
Auto Trait Implementations§
impl Freeze for Signal
impl RefUnwindSafe for Signal
impl Send for Signal
impl Sync for Signal
impl Unpin for Signal
impl UnsafeUnpin for Signal
impl UnwindSafe for Signal
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