pub enum CollAsgnRejectReason {
UnknownDeal = 0,
UnknownOrInvalidInstrument = 1,
UnauthorizedTransaction = 2,
InsufficientCollateral = 3,
InvalidTypeOfCollateral = 4,
ExcessiveSubstitution = 5,
Other = 99,
}
Variants§
UnknownDeal = 0
UnknownOrInvalidInstrument = 1
InsufficientCollateral = 3
InvalidTypeOfCollateral = 4
ExcessiveSubstitution = 5
Other = 99
Implementations§
Source§impl CollAsgnRejectReason
impl CollAsgnRejectReason
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for CollAsgnRejectReason
impl Clone for CollAsgnRejectReason
Source§fn clone(&self) -> CollAsgnRejectReason
fn clone(&self) -> CollAsgnRejectReason
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CollAsgnRejectReason
impl Debug for CollAsgnRejectReason
Source§impl FromStr for CollAsgnRejectReason
impl FromStr for CollAsgnRejectReason
Source§impl Hash for CollAsgnRejectReason
impl Hash for CollAsgnRejectReason
Source§impl IntoFixValue for CollAsgnRejectReason
impl IntoFixValue for CollAsgnRejectReason
Source§impl PartialEq for CollAsgnRejectReason
impl PartialEq for CollAsgnRejectReason
impl Copy for CollAsgnRejectReason
impl Eq for CollAsgnRejectReason
impl StructuralPartialEq for CollAsgnRejectReason
Auto Trait Implementations§
impl Freeze for CollAsgnRejectReason
impl RefUnwindSafe for CollAsgnRejectReason
impl Send for CollAsgnRejectReason
impl Sync for CollAsgnRejectReason
impl Unpin for CollAsgnRejectReason
impl UnwindSafe for CollAsgnRejectReason
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