pub struct OperationResource {Show 16 fields
pub id: String,
pub kind: String,
pub aggregate_type: String,
pub aggregate_id: Option<String>,
pub status: OperationStatus,
pub details: Map<String, Value>,
pub git_commit_sha: Option<String>,
pub error_code: Option<String>,
pub error_message: Option<String>,
pub created_at: String,
pub updated_at: String,
pub committed_at: Option<String>,
pub applied_at: Option<String>,
pub ready_at: Option<String>,
pub terminal_at: Option<String>,
pub links: HashMap<String, Option<String>>,
}Fields§
§id: String§kind: String§aggregate_type: String§aggregate_id: Option<String>§status: OperationStatus§details: Map<String, Value>§git_commit_sha: Option<String>§error_code: Option<String>§error_message: Option<String>§created_at: String§updated_at: String§committed_at: Option<String>§applied_at: Option<String>§ready_at: Option<String>§terminal_at: Option<String>§links: HashMap<String, Option<String>>Trait Implementations§
Source§impl Clone for OperationResource
impl Clone for OperationResource
Source§fn clone(&self) -> OperationResource
fn clone(&self) -> OperationResource
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 OperationResource
impl Debug for OperationResource
Source§impl<'de> Deserialize<'de> for OperationResource
impl<'de> Deserialize<'de> for OperationResource
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 OperationResource
impl RefUnwindSafe for OperationResource
impl Send for OperationResource
impl Sync for OperationResource
impl Unpin for OperationResource
impl UnsafeUnpin for OperationResource
impl UnwindSafe for OperationResource
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