pub struct SessionScheduleRearmedData {
pub id: i64,
pub next_run_at: i64,
}Expand description
Session event “session.schedule_rearmed”. Self-paced schedule re-armed for its next run
Fields§
§id: i64Id of the self-paced schedule that was re-armed
next_run_at: i64Absolute time (epoch milliseconds) the model armed the next run to fire
Trait Implementations§
Source§impl Clone for SessionScheduleRearmedData
impl Clone for SessionScheduleRearmedData
Source§fn clone(&self) -> SessionScheduleRearmedData
fn clone(&self) -> SessionScheduleRearmedData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SessionScheduleRearmedData
impl Debug for SessionScheduleRearmedData
Source§impl Default for SessionScheduleRearmedData
impl Default for SessionScheduleRearmedData
Source§fn default() -> SessionScheduleRearmedData
fn default() -> SessionScheduleRearmedData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionScheduleRearmedData
impl<'de> Deserialize<'de> for SessionScheduleRearmedData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SessionScheduleRearmedData
impl RefUnwindSafe for SessionScheduleRearmedData
impl Send for SessionScheduleRearmedData
impl Sync for SessionScheduleRearmedData
impl Unpin for SessionScheduleRearmedData
impl UnsafeUnpin for SessionScheduleRearmedData
impl UnwindSafe for SessionScheduleRearmedData
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