pub struct TaskSubmittedEventDetails {
pub output: Option<String>,
pub resource: String,
pub resource_type: String,
}
Expand description
Contains details about a task submitted to a resource .
Fields§
§output: Option<String>
The response from a resource when a task has started.
resource: String
The service name of the resource in a task state.
resource_type: String
The action of the resource called by a task state.
Trait Implementations§
Source§impl Clone for TaskSubmittedEventDetails
impl Clone for TaskSubmittedEventDetails
Source§fn clone(&self) -> TaskSubmittedEventDetails
fn clone(&self) -> TaskSubmittedEventDetails
Returns a copy of the value. Read more
1.0.0 · 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 TaskSubmittedEventDetails
impl Debug for TaskSubmittedEventDetails
Source§impl Default for TaskSubmittedEventDetails
impl Default for TaskSubmittedEventDetails
Source§fn default() -> TaskSubmittedEventDetails
fn default() -> TaskSubmittedEventDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskSubmittedEventDetails
impl<'de> Deserialize<'de> for TaskSubmittedEventDetails
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 StructuralPartialEq for TaskSubmittedEventDetails
Auto Trait Implementations§
impl Freeze for TaskSubmittedEventDetails
impl RefUnwindSafe for TaskSubmittedEventDetails
impl Send for TaskSubmittedEventDetails
impl Sync for TaskSubmittedEventDetails
impl Unpin for TaskSubmittedEventDetails
impl UnwindSafe for TaskSubmittedEventDetails
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