pub enum AllocIntermedReqType {
PendingAccept = 1,
PendingRelease = 2,
PendingReversal = 3,
Accept = 4,
BlockLevelReject = 5,
AccountLevelReject = 6,
}
Variants§
PendingAccept = 1
PendingRelease = 2
PendingReversal = 3
Accept = 4
BlockLevelReject = 5
AccountLevelReject = 6
Implementations§
Source§impl AllocIntermedReqType
impl AllocIntermedReqType
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for AllocIntermedReqType
impl Clone for AllocIntermedReqType
Source§fn clone(&self) -> AllocIntermedReqType
fn clone(&self) -> AllocIntermedReqType
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 AllocIntermedReqType
impl Debug for AllocIntermedReqType
Source§impl FromStr for AllocIntermedReqType
impl FromStr for AllocIntermedReqType
Source§impl Hash for AllocIntermedReqType
impl Hash for AllocIntermedReqType
Source§impl IntoFixValue for AllocIntermedReqType
impl IntoFixValue for AllocIntermedReqType
Source§impl PartialEq for AllocIntermedReqType
impl PartialEq for AllocIntermedReqType
impl Copy for AllocIntermedReqType
impl Eq for AllocIntermedReqType
impl StructuralPartialEq for AllocIntermedReqType
Auto Trait Implementations§
impl Freeze for AllocIntermedReqType
impl RefUnwindSafe for AllocIntermedReqType
impl Send for AllocIntermedReqType
impl Sync for AllocIntermedReqType
impl Unpin for AllocIntermedReqType
impl UnwindSafe for AllocIntermedReqType
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