pub enum ArcMsg {
Typed(TypedArcMsg),
Raw {
msg: u16,
arg0: u16,
arg1: u16,
},
Buf([u32; 8]),
}Variants§
Implementations§
Trait Implementations§
Source§impl From<TypedArcMsg> for ArcMsg
impl From<TypedArcMsg> for ArcMsg
Source§fn from(val: TypedArcMsg) -> Self
fn from(val: TypedArcMsg) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ArcMsg
impl RefUnwindSafe for ArcMsg
impl Send for ArcMsg
impl Sync for ArcMsg
impl Unpin for ArcMsg
impl UnsafeUnpin for ArcMsg
impl UnwindSafe for ArcMsg
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