pub enum AsOfIndicator {
False,
True,
}
Variants§
Implementations§
Source§impl AsOfIndicator
impl AsOfIndicator
pub const fn from_bytes(input: &[u8]) -> Option<AsOfIndicator>
pub const fn from_fix_str(input: &FixStr) -> Option<AsOfIndicator>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for AsOfIndicator
impl Clone for AsOfIndicator
Source§fn clone(&self) -> AsOfIndicator
fn clone(&self) -> AsOfIndicator
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 AsOfIndicator
impl Debug for AsOfIndicator
Source§impl Default for AsOfIndicator
impl Default for AsOfIndicator
Source§fn default() -> AsOfIndicator
fn default() -> AsOfIndicator
Returns the “default value” for a type. Read more
Source§impl From<AsOfIndicator> for &'static [u8]
impl From<AsOfIndicator> for &'static [u8]
Source§impl PartialEq for AsOfIndicator
impl PartialEq for AsOfIndicator
Source§impl ToFixString for AsOfIndicator
impl ToFixString for AsOfIndicator
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<u8> for AsOfIndicator
impl TryFrom<u8> for AsOfIndicator
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Char) -> Result<AsOfIndicator, ParseRejectReason>
fn try_from(input: Char) -> Result<AsOfIndicator, ParseRejectReason>
Performs the conversion.
impl Copy for AsOfIndicator
impl Eq for AsOfIndicator
impl StructuralPartialEq for AsOfIndicator
Auto Trait Implementations§
impl Freeze for AsOfIndicator
impl RefUnwindSafe for AsOfIndicator
impl Send for AsOfIndicator
impl Sync for AsOfIndicator
impl Unpin for AsOfIndicator
impl UnwindSafe for AsOfIndicator
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