Struct vapcore_trace::trace::Call[][src]

pub struct Call {
    pub from: Address,
    pub to: Address,
    pub value: U256,
    pub gas: U256,
    pub input: Bytes,
    pub call_type: BackwardsCompatibleCallType,
}

Description of a call action, either a CALL operation or a message transaction.

Fields

from: Address

The sending account.

to: Address

The destination account.

value: U256

The value transferred to the destination account.

gas: U256

The gas available for executing the call.

input: Bytes

The input data provided to the call.

call_type: BackwardsCompatibleCallType

The type of the call.

Implementations

impl Call[src]

pub fn bloom(&self) -> Bloom[src]

Returns call action bloom. The bloom contains from and to addresses.

Trait Implementations

impl Clone for Call[src]

impl Debug for Call[src]

impl Decodable for Call[src]

impl Encodable for Call[src]

impl From<ActionParams> for Call[src]

impl PartialEq<Call> for Call[src]

impl StructuralPartialEq for Call[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,