Struct smart_wallet::WalletCreateEvent
source · [−]pub struct WalletCreateEvent {
pub smart_wallet: Pubkey,
pub owners: Vec<Pubkey>,
pub threshold: u64,
pub minimum_delay: i64,
pub timestamp: i64,
}Expand description
Emitted when a SmartWallet is created.
Fields
smart_wallet: PubkeyThe SmartWallet.
owners: Vec<Pubkey>The owners of the created SmartWallet.
threshold: u64The SmartWallet::threshold at the time of creation.
minimum_delay: i64The SmartWallet::minimum_delay at the time of creation.
timestamp: i64The Unix timestamp when the event was emitted.
Trait Implementations
sourceimpl BorshDeserialize for WalletCreateEvent where
Pubkey: BorshDeserialize,
Vec<Pubkey>: BorshDeserialize,
u64: BorshDeserialize,
i64: BorshDeserialize,
i64: BorshDeserialize,
impl BorshDeserialize for WalletCreateEvent where
Pubkey: BorshDeserialize,
Vec<Pubkey>: BorshDeserialize,
u64: BorshDeserialize,
i64: BorshDeserialize,
i64: BorshDeserialize,
sourceimpl BorshSerialize for WalletCreateEvent where
Pubkey: BorshSerialize,
Vec<Pubkey>: BorshSerialize,
u64: BorshSerialize,
i64: BorshSerialize,
i64: BorshSerialize,
impl BorshSerialize for WalletCreateEvent where
Pubkey: BorshSerialize,
Vec<Pubkey>: BorshSerialize,
u64: BorshSerialize,
i64: BorshSerialize,
i64: BorshSerialize,
sourceimpl Discriminator for WalletCreateEvent
impl Discriminator for WalletCreateEvent
fn discriminator() -> [u8; 8]
Auto Trait Implementations
impl RefUnwindSafe for WalletCreateEvent
impl Send for WalletCreateEvent
impl Sync for WalletCreateEvent
impl Unpin for WalletCreateEvent
impl UnwindSafe for WalletCreateEvent
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
pub default fn example() -> T
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