#[non_exhaustive]#[repr(u16)]pub enum Ob_Data_Style {
UNDECLARED_STYLE = 0,
INT_STYLE = 1,
FLOAT_STYLE = 2,
PTR_STYLE = 3,
CONST_STYLE = 4,
ID_STYLE = 5,
OBINST_STYLE = 6,
LONG_STYLE = 7,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
UNDECLARED_STYLE = 0
INT_STYLE = 1
FLOAT_STYLE = 2
PTR_STYLE = 3
CONST_STYLE = 4
ID_STYLE = 5
OBINST_STYLE = 6
LONG_STYLE = 7
Trait Implementations§
Source§impl Clone for Ob_Data_Style
impl Clone for Ob_Data_Style
Source§fn clone(&self) -> Ob_Data_Style
fn clone(&self) -> Ob_Data_Style
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 Ob_Data_Style
impl Debug for Ob_Data_Style
Source§impl PartialEq for Ob_Data_Style
impl PartialEq for Ob_Data_Style
impl Copy for Ob_Data_Style
impl Eq for Ob_Data_Style
impl StructuralPartialEq for Ob_Data_Style
Auto Trait Implementations§
impl Freeze for Ob_Data_Style
impl RefUnwindSafe for Ob_Data_Style
impl Send for Ob_Data_Style
impl Sync for Ob_Data_Style
impl Unpin for Ob_Data_Style
impl UnwindSafe for Ob_Data_Style
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