pub struct ActionRevision {
pub created: Option<f64>,
pub revision_change_id: Option<String>,
pub revision_id: String,
}
Expand description
Represents information about the version (or revision) of an action.
Fields§
§created: Option<f64>
The date and time when the most recent version of the action was created, in timestamp format.
revision_change_id: Option<String>
The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).
revision_id: String
The system-generated unique ID that identifies the revision number of the action.
Trait Implementations§
Source§impl Clone for ActionRevision
impl Clone for ActionRevision
Source§fn clone(&self) -> ActionRevision
fn clone(&self) -> ActionRevision
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 ActionRevision
impl Debug for ActionRevision
Source§impl Default for ActionRevision
impl Default for ActionRevision
Source§fn default() -> ActionRevision
fn default() -> ActionRevision
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionRevision
impl<'de> Deserialize<'de> for ActionRevision
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 ActionRevision
impl PartialEq for ActionRevision
Source§impl Serialize for ActionRevision
impl Serialize for ActionRevision
impl StructuralPartialEq for ActionRevision
Auto Trait Implementations§
impl Freeze for ActionRevision
impl RefUnwindSafe for ActionRevision
impl Send for ActionRevision
impl Sync for ActionRevision
impl Unpin for ActionRevision
impl UnwindSafe for ActionRevision
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