pub enum ArgumentData {
Value(u64),
Reference(Vec<u8>),
}Expand description
The data portion of a function argument.
Variants§
Auto Trait Implementations§
impl Freeze for ArgumentData
impl RefUnwindSafe for ArgumentData
impl Send for ArgumentData
impl Sync for ArgumentData
impl Unpin for ArgumentData
impl UnwindSafe for ArgumentData
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