pub struct CloudRunResponse {
pub execution_id: String,
pub status: String,
pub result: Option<ExecutionResult>,
}Expand description
Response from cloud execution.
Fields§
§execution_id: String§status: String§result: Option<ExecutionResult>Trait Implementations§
Source§impl Debug for CloudRunResponse
impl Debug for CloudRunResponse
Source§impl<'de> Deserialize<'de> for CloudRunResponse
impl<'de> Deserialize<'de> for CloudRunResponse
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 CloudRunResponse
impl RefUnwindSafe for CloudRunResponse
impl Send for CloudRunResponse
impl Sync for CloudRunResponse
impl Unpin for CloudRunResponse
impl UnsafeUnpin for CloudRunResponse
impl UnwindSafe for CloudRunResponse
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