#[repr(u8)]pub enum QuoteId {
Fixed = 1,
Float = 2,
Depth = 3,
Cross = 4,
Unknown1 = 5,
Unknown2 = 6,
}
Expand description
Enum representing various types
Variants§
Fixed = 1
fixed
Float = 2
float
Depth = 3
depth
Cross = 4
cross
Unknown1 = 5
Undocumented option
Unknown2 = 6
Undocumented option
Trait Implementations§
Source§impl<'de> Deserialize<'de> for QuoteId
impl<'de> Deserialize<'de> for QuoteId
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl TryFromPrimitive for QuoteId
impl TryFromPrimitive for QuoteId
impl Copy for QuoteId
impl StructuralPartialEq for QuoteId
Auto Trait Implementations§
impl Freeze for QuoteId
impl RefUnwindSafe for QuoteId
impl Send for QuoteId
impl Sync for QuoteId
impl Unpin for QuoteId
impl UnwindSafe for QuoteId
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