pub struct ItautomationCreateTaskResponse {
pub errors: Option<Vec<MsaspecError>>,
pub meta: Box<MsaspecMetaInfo>,
pub resources: Vec<ItautomationTask>,
}Fields§
§errors: Option<Vec<MsaspecError>>Array of error objects if any occurred. Example: [{code: 400, message: ‘Invalid request parameters’}]
meta: Box<MsaspecMetaInfo>§resources: Vec<ItautomationTask>Array of resource objects returned by the API.
Implementations§
Source§impl ItautomationCreateTaskResponse
impl ItautomationCreateTaskResponse
pub fn new( meta: MsaspecMetaInfo, resources: Vec<ItautomationTask>, ) -> ItautomationCreateTaskResponse
Trait Implementations§
Source§impl Clone for ItautomationCreateTaskResponse
impl Clone for ItautomationCreateTaskResponse
Source§fn clone(&self) -> ItautomationCreateTaskResponse
fn clone(&self) -> ItautomationCreateTaskResponse
Returns a duplicate 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 Default for ItautomationCreateTaskResponse
impl Default for ItautomationCreateTaskResponse
Source§fn default() -> ItautomationCreateTaskResponse
fn default() -> ItautomationCreateTaskResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ItautomationCreateTaskResponse
impl<'de> Deserialize<'de> for ItautomationCreateTaskResponse
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 ItautomationCreateTaskResponse
impl PartialEq for ItautomationCreateTaskResponse
Source§fn eq(&self, other: &ItautomationCreateTaskResponse) -> bool
fn eq(&self, other: &ItautomationCreateTaskResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ItautomationCreateTaskResponse
Auto Trait Implementations§
impl Freeze for ItautomationCreateTaskResponse
impl RefUnwindSafe for ItautomationCreateTaskResponse
impl Send for ItautomationCreateTaskResponse
impl Sync for ItautomationCreateTaskResponse
impl Unpin for ItautomationCreateTaskResponse
impl UnwindSafe for ItautomationCreateTaskResponse
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