pub struct CreateSmartWallet {
pub _bump: u8,
pub max_owners: u8,
pub owners: Vec<Pubkey>,
pub threshold: u64,
pub minimum_delay: i64,
}
Expand description
Instruction.
Fields§
§_bump: u8
§max_owners: u8
§owners: Vec<Pubkey>
§threshold: u64
§minimum_delay: i64
Trait Implementations§
Source§impl BorshDeserialize for CreateSmartWalletwhere
u8: BorshDeserialize,
Vec<Pubkey>: BorshDeserialize,
u64: BorshDeserialize,
i64: BorshDeserialize,
impl BorshDeserialize for CreateSmartWalletwhere
u8: BorshDeserialize,
Vec<Pubkey>: BorshDeserialize,
u64: BorshDeserialize,
i64: BorshDeserialize,
Source§impl BorshSerialize for CreateSmartWallet
impl BorshSerialize for CreateSmartWallet
Source§impl InstructionData for CreateSmartWallet
impl InstructionData for CreateSmartWallet
Auto Trait Implementations§
impl Freeze for CreateSmartWallet
impl RefUnwindSafe for CreateSmartWallet
impl Send for CreateSmartWallet
impl Sync for CreateSmartWallet
impl Unpin for CreateSmartWallet
impl UnwindSafe for CreateSmartWallet
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more