pub struct Command {
pub cancelled: bool,
pub complete: bool,
pub created_at: String,
pub errored: bool,
pub id: u32,
pub jobs: Vec<String>,
pub logs: String,
pub message: String,
pub resource_uri: String,
}
Fields§
§cancelled: bool
§complete: bool
§created_at: String
§errored: bool
§id: u32
§jobs: Vec<String>
§logs: String
§message: String
§resource_uri: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Command
impl<'de> Deserialize<'de> for Command
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 EndpointName for Command
impl EndpointName for Command
fn endpoint_name() -> &'static str
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
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