pub struct ClawHubVersion {
pub version: String,
pub created_at: i64,
pub changelog: Option<String>,
}Expand description
ClawHub version entry.
Fields§
§version: String§created_at: i64§changelog: Option<String>Trait Implementations§
Source§impl Clone for ClawHubVersion
impl Clone for ClawHubVersion
Source§fn clone(&self) -> ClawHubVersion
fn clone(&self) -> ClawHubVersion
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 ClawHubVersion
impl Debug for ClawHubVersion
Source§impl<'de> Deserialize<'de> for ClawHubVersion
impl<'de> Deserialize<'de> for ClawHubVersion
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 ClawHubVersion
impl RefUnwindSafe for ClawHubVersion
impl Send for ClawHubVersion
impl Sync for ClawHubVersion
impl Unpin for ClawHubVersion
impl UnsafeUnpin for ClawHubVersion
impl UnwindSafe for ClawHubVersion
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