pub struct AvailablePeriod {
pub time_interval: KaskadeTimeInterval,
pub resolution: Option<String>,
pub points: Vec<KaskadePoint>,
}Expand description
The Available_Period element wrapping the time interval and optional
point data.
Fields§
§time_interval: KaskadeTimeIntervalTime interval for this period.
resolution: Option<String>Resolution (optional; PT1M when present).
points: Vec<KaskadePoint>Point values within this period.
Trait Implementations§
Source§impl Clone for AvailablePeriod
impl Clone for AvailablePeriod
Source§fn clone(&self) -> AvailablePeriod
fn clone(&self) -> AvailablePeriod
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 AvailablePeriod
impl Debug for AvailablePeriod
Source§impl<'de> Deserialize<'de> for AvailablePeriod
impl<'de> Deserialize<'de> for AvailablePeriod
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 AvailablePeriod
impl PartialEq for AvailablePeriod
Source§fn eq(&self, other: &AvailablePeriod) -> bool
fn eq(&self, other: &AvailablePeriod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AvailablePeriod
impl Serialize for AvailablePeriod
impl StructuralPartialEq for AvailablePeriod
Auto Trait Implementations§
impl Freeze for AvailablePeriod
impl RefUnwindSafe for AvailablePeriod
impl Send for AvailablePeriod
impl Sync for AvailablePeriod
impl Unpin for AvailablePeriod
impl UnsafeUnpin for AvailablePeriod
impl UnwindSafe for AvailablePeriod
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