pub struct ReleaseCalendar {
pub offset: String,
pub periodicity: String,
pub tolerance: String,
pub other: Option<HashMap<String, Value>>,
}
Expand description
The timing of releases of the constrained data.
Fields§
§offset: String
§periodicity: String
§tolerance: String
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for ReleaseCalendar
impl Clone for ReleaseCalendar
Source§fn clone(&self) -> ReleaseCalendar
fn clone(&self) -> ReleaseCalendar
Returns a copy 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 ReleaseCalendar
impl Debug for ReleaseCalendar
Source§impl Default for ReleaseCalendar
impl Default for ReleaseCalendar
Source§fn default() -> ReleaseCalendar
fn default() -> ReleaseCalendar
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseCalendar
impl<'de> Deserialize<'de> for ReleaseCalendar
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 ReleaseCalendar
impl PartialEq for ReleaseCalendar
Source§impl Serialize for ReleaseCalendar
impl Serialize for ReleaseCalendar
impl Eq for ReleaseCalendar
impl StructuralPartialEq for ReleaseCalendar
Auto Trait Implementations§
impl Freeze for ReleaseCalendar
impl RefUnwindSafe for ReleaseCalendar
impl Send for ReleaseCalendar
impl Sync for ReleaseCalendar
impl Unpin for ReleaseCalendar
impl UnwindSafe for ReleaseCalendar
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