pub struct Call {
pub data: Bytes,
pub destination: MaybeEmpty<Address>,
pub gas_limit: Uint,
pub value: Uint,
}
Expand description
Vm call deserialization.
Fields
data: Bytes
Call data.
destination: MaybeEmpty<Address>
Call destination.
gas_limit: Uint
Gas limit.
value: Uint
Call value.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Call
impl<'de> Deserialize<'de> for Call
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Call
Auto Trait Implementations
impl RefUnwindSafe for Call
impl Send for Call
impl Sync for Call
impl Unpin for Call
impl UnwindSafe for Call
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more