pub enum StartTaskResponse {
InvalidArguments(GeneralError),
ListOfRunningTasks(StartTask200Response),
}Variants§
InvalidArguments(GeneralError)
Invalid arguments
ListOfRunningTasks(StartTask200Response)
List of running tasks
Trait Implementations§
Source§impl Debug for StartTaskResponse
impl Debug for StartTaskResponse
Source§impl<'de> Deserialize<'de> for StartTaskResponse
impl<'de> Deserialize<'de> for StartTaskResponse
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 PartialEq for StartTaskResponse
impl PartialEq for StartTaskResponse
Source§fn eq(&self, other: &StartTaskResponse) -> bool
fn eq(&self, other: &StartTaskResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StartTaskResponse
impl Serialize for StartTaskResponse
impl StructuralPartialEq for StartTaskResponse
Auto Trait Implementations§
impl Freeze for StartTaskResponse
impl RefUnwindSafe for StartTaskResponse
impl Send for StartTaskResponse
impl Sync for StartTaskResponse
impl Unpin for StartTaskResponse
impl UnsafeUnpin for StartTaskResponse
impl UnwindSafe for StartTaskResponse
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