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