pub enum NetworkRequestType {
Snapshot = 1,
Subscribe = 2,
StopSubscribing = 4,
LevelOfDetail = 8,
}Variants§
Implementations§
Source§impl NetworkRequestType
impl NetworkRequestType
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for NetworkRequestType
impl Clone for NetworkRequestType
Source§fn clone(&self) -> NetworkRequestType
fn clone(&self) -> NetworkRequestType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NetworkRequestType
Source§impl Debug for NetworkRequestType
impl Debug for NetworkRequestType
impl Eq for NetworkRequestType
Source§impl FromStr for NetworkRequestType
impl FromStr for NetworkRequestType
Source§impl Hash for NetworkRequestType
impl Hash for NetworkRequestType
Source§impl IntoFixValue for NetworkRequestType
impl IntoFixValue for NetworkRequestType
Source§impl PartialEq for NetworkRequestType
impl PartialEq for NetworkRequestType
Source§fn eq(&self, other: &NetworkRequestType) -> bool
fn eq(&self, other: &NetworkRequestType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NetworkRequestType
Auto Trait Implementations§
impl Freeze for NetworkRequestType
impl RefUnwindSafe for NetworkRequestType
impl Send for NetworkRequestType
impl Sync for NetworkRequestType
impl Unpin for NetworkRequestType
impl UnsafeUnpin for NetworkRequestType
impl UnwindSafe for NetworkRequestType
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