pub struct RelativeTimeInterval {
pub custom_data: Option<CustomData>,
pub duration: Option<i64>,
pub start: i64,
}Fields§
§custom_data: Option<CustomData>§duration: Option<i64>Duration of the interval, in seconds.
start: i64Start of the interval, in seconds from NOW.
Trait Implementations§
Source§impl Clone for RelativeTimeInterval
impl Clone for RelativeTimeInterval
Source§fn clone(&self) -> RelativeTimeInterval
fn clone(&self) -> RelativeTimeInterval
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 RelativeTimeInterval
impl Debug for RelativeTimeInterval
impl Eq for RelativeTimeInterval
Source§impl PartialEq for RelativeTimeInterval
impl PartialEq for RelativeTimeInterval
impl StructuralPartialEq for RelativeTimeInterval
Auto Trait Implementations§
impl Freeze for RelativeTimeInterval
impl RefUnwindSafe for RelativeTimeInterval
impl Send for RelativeTimeInterval
impl Sync for RelativeTimeInterval
impl Unpin for RelativeTimeInterval
impl UnsafeUnpin for RelativeTimeInterval
impl UnwindSafe for RelativeTimeInterval
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