pub struct PrecompileOutput {
pub exit_status: ExitSucceed,
pub output: Vec<u8>,
}
Expand description
Data returned by a precompile on success.
Fields§
§exit_status: ExitSucceed
§output: Vec<u8>
Trait Implementations§
Source§impl Clone for PrecompileOutput
impl Clone for PrecompileOutput
Source§fn clone(&self) -> PrecompileOutput
fn clone(&self) -> PrecompileOutput
Returns a copy 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 PrecompileOutput
impl Debug for PrecompileOutput
Source§impl PartialEq for PrecompileOutput
impl PartialEq for PrecompileOutput
impl Eq for PrecompileOutput
impl StructuralPartialEq for PrecompileOutput
Auto Trait Implementations§
impl Freeze for PrecompileOutput
impl RefUnwindSafe for PrecompileOutput
impl Send for PrecompileOutput
impl Sync for PrecompileOutput
impl Unpin for PrecompileOutput
impl UnwindSafe for PrecompileOutput
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