pub struct StableVersioning {
pub release: Option<String>,
pub latest: Option<String>,
pub versions: StableVersions,
pub last_updated: Option<NaiveDateTime>,
}
Fields§
§release: Option<String>
§latest: Option<String>
§versions: StableVersions
§last_updated: Option<NaiveDateTime>
Trait Implementations§
Source§impl Clone for StableVersioning
impl Clone for StableVersioning
Source§fn clone(&self) -> StableVersioning
fn clone(&self) -> StableVersioning
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 StableVersioning
impl Debug for StableVersioning
Source§impl Default for StableVersioning
impl Default for StableVersioning
Source§fn default() -> StableVersioning
fn default() -> StableVersioning
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StableVersioning
impl<'de> Deserialize<'de> for StableVersioning
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
Auto Trait Implementations§
impl Freeze for StableVersioning
impl RefUnwindSafe for StableVersioning
impl Send for StableVersioning
impl Sync for StableVersioning
impl Unpin for StableVersioning
impl UnwindSafe for StableVersioning
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