pub struct CronJob {Show 15 fields
pub pubkey: Pubkey,
pub id: u32,
pub user_cron_jobs: Pubkey,
pub task_queue: Pubkey,
pub authority: Pubkey,
pub free_tasks_per_transaction: u8,
pub schedule: String,
pub name: String,
pub current_exec_ts: i64,
pub current_transaction_id: u32,
pub next_transaction_id: u32,
pub num_tasks_per_queue_call: u8,
pub removed_from_queue: bool,
pub balance: u64,
pub next_schedule_task: Pubkey,
}Fields§
§pubkey: Pubkey§id: u32§user_cron_jobs: Pubkey§task_queue: Pubkey§free_tasks_per_transaction: u8§schedule: String§name: String§current_exec_ts: i64§current_transaction_id: u32§next_transaction_id: u32§num_tasks_per_queue_call: u8§removed_from_queue: bool§balance: u64§next_schedule_task: PubkeyTrait Implementations§
Auto Trait Implementations§
impl Freeze for CronJob
impl RefUnwindSafe for CronJob
impl Send for CronJob
impl Sync for CronJob
impl Unpin for CronJob
impl UnwindSafe for CronJob
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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