pub struct CurrentRevision {
pub change_identifier: String,
pub created: Option<f64>,
pub revision: String,
pub revision_summary: Option<String>,
}
Expand description
Represents information about a current revision.
Fields§
§change_identifier: String
The change identifier for the current revision.
created: Option<f64>
The date and time when the most recent revision of the artifact was created, in timestamp format.
revision: String
The revision ID of the current version of an artifact.
revision_summary: Option<String>
The summary of the most recent revision of the artifact.
Trait Implementations§
Source§impl Clone for CurrentRevision
impl Clone for CurrentRevision
Source§fn clone(&self) -> CurrentRevision
fn clone(&self) -> CurrentRevision
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 CurrentRevision
impl Debug for CurrentRevision
Source§impl Default for CurrentRevision
impl Default for CurrentRevision
Source§fn default() -> CurrentRevision
fn default() -> CurrentRevision
Returns the “default value” for a type. Read more
Source§impl PartialEq for CurrentRevision
impl PartialEq for CurrentRevision
Source§impl Serialize for CurrentRevision
impl Serialize for CurrentRevision
impl StructuralPartialEq for CurrentRevision
Auto Trait Implementations§
impl Freeze for CurrentRevision
impl RefUnwindSafe for CurrentRevision
impl Send for CurrentRevision
impl Sync for CurrentRevision
impl Unpin for CurrentRevision
impl UnwindSafe for CurrentRevision
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