pub type ScheduledV3Of<T> = Scheduled<Vec<u8>, CallOrHashOf<T>, BlockNumberFor<T>, <T as Config>::PalletsOrigin, <T as Config>::AccountId>;
Aliased Type§
struct ScheduledV3Of<T> {
pub maybe_id: Option<Vec<u8>>,
pub priority: u8,
pub call: MaybeHashed<<T as Config>::RuntimeCall, <T as Config>::Hash>,
pub maybe_periodic: Option<(<<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber, u32)>,
pub origin: <T as Config>::PalletsOrigin,
/* private fields */
}
Fields§
§maybe_id: Option<Vec<u8>>
The unique identity for this task, if there is one.
priority: u8
This task’s priority.
call: MaybeHashed<<T as Config>::RuntimeCall, <T as Config>::Hash>
The call to be dispatched.
maybe_periodic: Option<(<<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber, u32)>
If the call is periodic, then this points to the information concerning that.
origin: <T as Config>::PalletsOrigin
The origin with which to dispatch the call.