pub struct GenericCall {
pub call: String,
pub args: Vec<String>,
pub result: CallResult,
}
Expand description
A generic unmodelled syscall: any name, with any args of any type and any result of any type
Fields§
§call: String
§args: Vec<String>
Not currently modelled, but per-call-type
result: CallResult
Not currently modelled, but per-call-type
Trait Implementations§
Source§impl Clone for GenericCall
impl Clone for GenericCall
Source§fn clone(&self) -> GenericCall
fn clone(&self) -> GenericCall
Returns a duplicate of the value. Read more
1.0.0 · 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 GenericCall
impl Debug for GenericCall
Source§impl Hash for GenericCall
impl Hash for GenericCall
Source§impl PartialEq for GenericCall
impl PartialEq for GenericCall
impl Eq for GenericCall
impl StructuralPartialEq for GenericCall
Auto Trait Implementations§
impl Freeze for GenericCall
impl RefUnwindSafe for GenericCall
impl Send for GenericCall
impl Sync for GenericCall
impl Unpin for GenericCall
impl UnwindSafe for GenericCall
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