pub enum ArgTy {
Int {
signed: bool,
offset: i32,
},
Register(RegisterKind, RegisterMode),
List {
element_type: &'static ArgTy,
len_arg: &'static str,
},
Player,
Channel,
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArgTy
impl RefUnwindSafe for ArgTy
impl Send for ArgTy
impl Sync for ArgTy
impl Unpin for ArgTy
impl UnwindSafe for ArgTy
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