Enum ic_utils::interfaces::wallet::EventKind[][src]

pub enum EventKind {
    CyclesSent {
        to: Principal,
        amount: u64,
        refund: u64,
    },
    CyclesReceived {
        from: Principal,
        amount: u64,
    },
    AddressAdded {
        id: Principal,
        name: Option<String>,
        role: Role,
    },
    AddressRemoved {
        id: Principal,
    },
    CanisterCreated {
        canister: Principal,
        cycles: u64,
    },
    CanisterCalled {
        canister: Principal,
        method_name: String,
        cycles: u64,
    },
}

Variants

CyclesSent

Fields of CyclesSent

to: Principalamount: u64refund: u64
CyclesReceived

Fields of CyclesReceived

from: Principalamount: u64
AddressAdded

Fields of AddressAdded

id: Principalname: Option<String>role: Role
AddressRemoved

Fields of AddressRemoved

id: Principal
CanisterCreated

Fields of CanisterCreated

canister: Principalcycles: u64
CanisterCalled

Fields of CanisterCalled

canister: Principalmethod_name: Stringcycles: u64

Trait Implementations

impl CandidType for EventKind[src]

impl Debug for EventKind[src]

impl<'de> Deserialize<'de> for EventKind[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,