#[non_exhaustive]pub struct NotebookAbsoluteTime {
pub end: DateTime<Utc>,
pub live: Option<bool>,
pub start: DateTime<Utc>,
pub additional_properties: BTreeMap<String, Value>,
/* private fields */
}
Expand description
Absolute timeframe.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.end: DateTime<Utc>
The end time.
live: Option<bool>
Indicates whether the timeframe should be shifted to end at the current time.
start: DateTime<Utc>
The start time.
additional_properties: BTreeMap<String, Value>
Implementations§
Trait Implementations§
Source§impl Clone for NotebookAbsoluteTime
impl Clone for NotebookAbsoluteTime
Source§fn clone(&self) -> NotebookAbsoluteTime
fn clone(&self) -> NotebookAbsoluteTime
Returns a duplicate of the value. Read more
1.0.0 · 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 NotebookAbsoluteTime
impl Debug for NotebookAbsoluteTime
Source§impl<'de> Deserialize<'de> for NotebookAbsoluteTime
impl<'de> Deserialize<'de> for NotebookAbsoluteTime
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
Source§impl PartialEq for NotebookAbsoluteTime
impl PartialEq for NotebookAbsoluteTime
Source§impl Serialize for NotebookAbsoluteTime
impl Serialize for NotebookAbsoluteTime
impl StructuralPartialEq for NotebookAbsoluteTime
Auto Trait Implementations§
impl Freeze for NotebookAbsoluteTime
impl RefUnwindSafe for NotebookAbsoluteTime
impl Send for NotebookAbsoluteTime
impl Sync for NotebookAbsoluteTime
impl Unpin for NotebookAbsoluteTime
impl UnwindSafe for NotebookAbsoluteTime
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