pub enum CollAction {
Retain = 0,
Add = 1,
Remove = 2,
}
Variants§
Implementations§
Source§impl CollAction
impl CollAction
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for CollAction
impl Clone for CollAction
Source§fn clone(&self) -> CollAction
fn clone(&self) -> CollAction
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 CollAction
impl Debug for CollAction
Source§impl FromStr for CollAction
impl FromStr for CollAction
Source§impl Hash for CollAction
impl Hash for CollAction
Source§impl IntoFixValue for CollAction
impl IntoFixValue for CollAction
Source§impl PartialEq for CollAction
impl PartialEq for CollAction
impl Copy for CollAction
impl Eq for CollAction
impl StructuralPartialEq for CollAction
Auto Trait Implementations§
impl Freeze for CollAction
impl RefUnwindSafe for CollAction
impl Send for CollAction
impl Sync for CollAction
impl Unpin for CollAction
impl UnwindSafe for CollAction
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