pub struct ScheduledSession {
pub next_start_time: i64,
pub next_end_time: i64,
pub period: i64,
pub duration: i64,
pub fees: Option<FeeInfo>,
}Fields§
§next_start_time: i64§next_end_time: i64§period: i64§duration: i64§fees: Option<FeeInfo>Trait Implementations§
Source§impl Clone for ScheduledSession
impl Clone for ScheduledSession
Source§fn clone(&self) -> ScheduledSession
fn clone(&self) -> ScheduledSession
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 moreAuto Trait Implementations§
impl Freeze for ScheduledSession
impl RefUnwindSafe for ScheduledSession
impl Send for ScheduledSession
impl Sync for ScheduledSession
impl Unpin for ScheduledSession
impl UnsafeUnpin for ScheduledSession
impl UnwindSafe for ScheduledSession
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