pub struct Invocation<'a> {
pub input: &'a [u8],
pub regs: [u32; 7],
pub global_data: &'a [u8],
pub file_offset: u64,
pub exec_count: u32,
}Fields§
§input: &'a [u8]§regs: [u32; 7]§global_data: &'a [u8]§file_offset: u64§exec_count: u32Trait Implementations§
Source§impl<'a> Clone for Invocation<'a>
impl<'a> Clone for Invocation<'a>
Source§fn clone(&self) -> Invocation<'a>
fn clone(&self) -> Invocation<'a>
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<'a> Debug for Invocation<'a>
impl<'a> Debug for Invocation<'a>
Source§impl<'a> PartialEq for Invocation<'a>
impl<'a> PartialEq for Invocation<'a>
Source§fn eq(&self, other: &Invocation<'a>) -> bool
fn eq(&self, other: &Invocation<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Eq for Invocation<'a>
impl<'a> StructuralPartialEq for Invocation<'a>
Auto Trait Implementations§
impl<'a> Freeze for Invocation<'a>
impl<'a> RefUnwindSafe for Invocation<'a>
impl<'a> Send for Invocation<'a>
impl<'a> Sync for Invocation<'a>
impl<'a> Unpin for Invocation<'a>
impl<'a> UnsafeUnpin for Invocation<'a>
impl<'a> UnwindSafe for Invocation<'a>
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