pub struct ProjectVersion {
pub changed: String,
pub id: Uuid,
}Fields§
§changed: String§id: UuidImplementations§
Source§impl ProjectVersion
impl ProjectVersion
pub fn new(changed: String, id: Uuid) -> ProjectVersion
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
Source§impl PartialEq for ProjectVersion
impl PartialEq for ProjectVersion
Source§fn eq(&self, other: &ProjectVersion) -> bool
fn eq(&self, other: &ProjectVersion) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProjectVersion
impl Serialize for ProjectVersion
impl StructuralPartialEq for ProjectVersion
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