Struct payment_program::state::Task [−][src]
pub struct Task {
pub payment: Pubkey,
pub process_at: u64,
pub status: TaskStatus,
pub transfer_status: TransferStatus,
pub bump: u8,
}
Fields
payment: Pubkey
process_at: u64
status: TaskStatus
transfer_status: TransferStatus
bump: u8
Trait Implementations
Deserializes previously initialized account data. Should fail for all
uninitialized accounts, where the bytes are zeroed. Implementations
should be unique to a particular account type so that one can never
successfully deserialize the data of one account type into another.
For example, if the SPL token program were to implement this trait,
it should be impossible to deserialize a Mint
account into a token
Account
. Read more
impl BorshDeserialize for Task where
Pubkey: BorshDeserialize,
u64: BorshDeserialize,
TaskStatus: BorshDeserialize,
TransferStatus: BorshDeserialize,
u8: BorshDeserialize,
impl BorshDeserialize for Task where
Pubkey: BorshDeserialize,
u64: BorshDeserialize,
TaskStatus: BorshDeserialize,
TransferStatus: BorshDeserialize,
u8: BorshDeserialize,
impl BorshSerialize for Task where
Pubkey: BorshSerialize,
u64: BorshSerialize,
TaskStatus: BorshSerialize,
TransferStatus: BorshSerialize,
u8: BorshSerialize,
impl BorshSerialize for Task where
Pubkey: BorshSerialize,
u64: BorshSerialize,
TaskStatus: BorshSerialize,
TransferStatus: BorshSerialize,
u8: BorshSerialize,
Auto Trait Implementations
impl RefUnwindSafe for Task
impl UnwindSafe for Task
Blanket Implementations
pub default fn example() -> T
Mutably borrows from an owned value. Read more