pub enum AllocType {
Show 14 variants
Calculated = 1,
Preliminary = 2,
SellsideCalculatedUsingPreliminary = 3,
SellsideCalculatedWithoutPreliminary = 4,
ReadyToBook = 5,
BuysideReadyToBook = 6,
WarehouseInstruction = 7,
RequestToIntermediary = 8,
Accept = 9,
Reject = 10,
AcceptPending = 11,
IncompleteGroup = 12,
CompleteGroup = 13,
ReversalPending = 14,
}
Variants§
Calculated = 1
Preliminary = 2
SellsideCalculatedUsingPreliminary = 3
SellsideCalculatedWithoutPreliminary = 4
ReadyToBook = 5
BuysideReadyToBook = 6
WarehouseInstruction = 7
RequestToIntermediary = 8
Accept = 9
Reject = 10
AcceptPending = 11
IncompleteGroup = 12
CompleteGroup = 13
ReversalPending = 14
Implementations§
Source§impl AllocType
impl AllocType
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl IntoFixValue for AllocType
impl IntoFixValue for AllocType
impl Copy for AllocType
impl Eq for AllocType
impl StructuralPartialEq for AllocType
Auto Trait Implementations§
impl Freeze for AllocType
impl RefUnwindSafe for AllocType
impl Send for AllocType
impl Sync for AllocType
impl Unpin for AllocType
impl UnwindSafe for AllocType
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