pub struct ActionV2 {
pub action_uid: String,
pub name: String,
pub action_type: String,
pub creation_time: u64,
pub progress: f64,
pub status: String,
pub additional_info: Option<ActionAdditionalInfo>,
}
Expand description
Action v2 - enhanced action tracking
Fields§
§action_uid: String
§name: String
§action_type: String
§creation_time: u64
§progress: f64
§status: String
§additional_info: Option<ActionAdditionalInfo>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ActionV2
impl<'de> Deserialize<'de> for ActionV2
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 ActionV2
impl RefUnwindSafe for ActionV2
impl Send for ActionV2
impl Sync for ActionV2
impl Unpin for ActionV2
impl UnwindSafe for ActionV2
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