pub struct ArgDescriptor {
pub name: &'static str,
pub canonical_type: &'static str,
pub size: u16,
}Expand description
An argument descriptor for an instruction.
Fields§
§name: &'static strArgument name.
canonical_type: &'static strCanonical type name.
size: u16Byte size.
Trait Implementations§
Source§impl Clone for ArgDescriptor
impl Clone for ArgDescriptor
Source§fn clone(&self) -> ArgDescriptor
fn clone(&self) -> ArgDescriptor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ArgDescriptor
impl Debug for ArgDescriptor
impl Copy for ArgDescriptor
Auto Trait Implementations§
impl Freeze for ArgDescriptor
impl RefUnwindSafe for ArgDescriptor
impl Send for ArgDescriptor
impl Sync for ArgDescriptor
impl Unpin for ArgDescriptor
impl UnsafeUnpin for ArgDescriptor
impl UnwindSafe for ArgDescriptor
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