pub enum CustomerOrFirm {
Customer = 0,
Firm = 1,
}Variants§
Implementations§
source§impl CustomerOrFirm
impl CustomerOrFirm
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
source§impl Clone for CustomerOrFirm
impl Clone for CustomerOrFirm
source§fn clone(&self) -> CustomerOrFirm
fn clone(&self) -> CustomerOrFirm
Returns a copy 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 CustomerOrFirm
impl Debug for CustomerOrFirm
source§impl FromStr for CustomerOrFirm
impl FromStr for CustomerOrFirm
source§impl Hash for CustomerOrFirm
impl Hash for CustomerOrFirm
source§impl IntoFixValue for CustomerOrFirm
impl IntoFixValue for CustomerOrFirm
source§impl PartialEq for CustomerOrFirm
impl PartialEq for CustomerOrFirm
source§fn eq(&self, other: &CustomerOrFirm) -> bool
fn eq(&self, other: &CustomerOrFirm) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for CustomerOrFirm
impl Eq for CustomerOrFirm
impl StructuralPartialEq for CustomerOrFirm
Auto Trait Implementations§
impl RefUnwindSafe for CustomerOrFirm
impl Send for CustomerOrFirm
impl Sync for CustomerOrFirm
impl Unpin for CustomerOrFirm
impl UnwindSafe for CustomerOrFirm
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