pub struct ProjectVersion {
pub id: String,
pub name: String,
pub description: Option<String>,
pub archived: bool,
pub released: bool,
pub release_date: Option<String>,
pub start_date: Option<String>,
}Fields§
§id: String§name: String§description: Option<String>§archived: bool§released: bool§release_date: Option<String>§start_date: Option<String>Trait Implementations§
Source§impl Clone for ProjectVersion
impl Clone for ProjectVersion
Source§fn clone(&self) -> ProjectVersion
fn clone(&self) -> ProjectVersion
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 ProjectVersion
impl Debug for ProjectVersion
Source§impl Default for ProjectVersion
impl Default for ProjectVersion
Source§fn default() -> ProjectVersion
fn default() -> ProjectVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectVersion
impl<'de> Deserialize<'de> for ProjectVersion
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 ProjectVersion
impl RefUnwindSafe for ProjectVersion
impl Send for ProjectVersion
impl Sync for ProjectVersion
impl Unpin for ProjectVersion
impl UnsafeUnpin for ProjectVersion
impl UnwindSafe for ProjectVersion
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