pub struct Call {
pub target: Address,
pub calldata: Bytes,
pub value: U256,
}Expand description
A single EVM call: target + calldata + msg.value.
This is the minimal unit produced by L4 plan functions and consumed by L5/L6.
Fields§
§target: Address§calldata: Bytes§value: U256Trait Implementations§
impl Eq for Call
impl StructuralPartialEq for Call
Auto Trait Implementations§
impl !Freeze for Call
impl RefUnwindSafe for Call
impl Send for Call
impl Sync for Call
impl Unpin for Call
impl UnsafeUnpin for Call
impl UnwindSafe for Call
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