#[repr(u32)]pub enum SimStatusRaw {
Ok = 0,
NotInitialized = 1,
InvalidArg = 2,
InvalidSignal = 3,
TypeMismatch = 4,
BufferTooSmall = 5,
Internal = 255,
}Variants§
Ok = 0
NotInitialized = 1
InvalidArg = 2
InvalidSignal = 3
TypeMismatch = 4
BufferTooSmall = 5
Internal = 255
Trait Implementations§
Source§impl Clone for SimStatusRaw
impl Clone for SimStatusRaw
Source§fn clone(&self) -> SimStatusRaw
fn clone(&self) -> SimStatusRaw
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 SimStatusRaw
impl Debug for SimStatusRaw
Source§impl PartialEq for SimStatusRaw
impl PartialEq for SimStatusRaw
Source§impl TryFrom<u32> for SimStatusRaw
impl TryFrom<u32> for SimStatusRaw
impl Copy for SimStatusRaw
impl Eq for SimStatusRaw
impl StructuralPartialEq for SimStatusRaw
Auto Trait Implementations§
impl Freeze for SimStatusRaw
impl RefUnwindSafe for SimStatusRaw
impl Send for SimStatusRaw
impl Sync for SimStatusRaw
impl Unpin for SimStatusRaw
impl UnsafeUnpin for SimStatusRaw
impl UnwindSafe for SimStatusRaw
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