pub struct CommandResource {Show 13 fields
pub id: String,
pub tenant_id: String,
pub workspace_id: String,
pub spec: CommandSpec,
pub state: CommandState,
pub operation_id: String,
pub output_end_cursor: u64,
pub output_truncated: bool,
pub version: u64,
pub created_at_ms: u64,
pub updated_at_ms: u64,
pub exit_code: Option<i32>,
pub error_code: Option<String>,
}Fields§
§id: String§tenant_id: String§workspace_id: String§spec: CommandSpec§state: CommandState§operation_id: String§output_end_cursor: u64§output_truncated: bool§version: u64§created_at_ms: u64§updated_at_ms: u64§exit_code: Option<i32>§error_code: Option<String>Trait Implementations§
Source§impl Clone for CommandResource
impl Clone for CommandResource
Source§fn clone(&self) -> CommandResource
fn clone(&self) -> CommandResource
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 CommandResource
impl Debug for CommandResource
Source§impl<'de> Deserialize<'de> for CommandResource
impl<'de> Deserialize<'de> for CommandResource
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
impl Eq for CommandResource
Source§impl PartialEq for CommandResource
impl PartialEq for CommandResource
Source§impl Serialize for CommandResource
impl Serialize for CommandResource
impl StructuralPartialEq for CommandResource
Auto Trait Implementations§
impl Freeze for CommandResource
impl RefUnwindSafe for CommandResource
impl Send for CommandResource
impl Sync for CommandResource
impl Unpin for CommandResource
impl UnsafeUnpin for CommandResource
impl UnwindSafe for CommandResource
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