pub struct CallOpenAPIDefinition {
pub call: String,
pub with: OpenAPIArguments,
pub common: TaskDefinitionFields,
}Expand description
Represents the definition of an OpenAPI call task
Fields§
§call: StringGets/sets the call type identifier
with: OpenAPIArgumentsGets/sets the call arguments
common: TaskDefinitionFieldsGets/sets the task’s common fields
Trait Implementations§
Source§impl Clone for CallOpenAPIDefinition
impl Clone for CallOpenAPIDefinition
Source§fn clone(&self) -> CallOpenAPIDefinition
fn clone(&self) -> CallOpenAPIDefinition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CallOpenAPIDefinition
impl Debug for CallOpenAPIDefinition
Source§impl Default for CallOpenAPIDefinition
impl Default for CallOpenAPIDefinition
Source§fn default() -> CallOpenAPIDefinition
fn default() -> CallOpenAPIDefinition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CallOpenAPIDefinition
impl<'de> Deserialize<'de> for CallOpenAPIDefinition
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 CallOpenAPIDefinition
impl PartialEq for CallOpenAPIDefinition
Source§fn eq(&self, other: &CallOpenAPIDefinition) -> bool
fn eq(&self, other: &CallOpenAPIDefinition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallOpenAPIDefinition
impl Serialize for CallOpenAPIDefinition
impl StructuralPartialEq for CallOpenAPIDefinition
Auto Trait Implementations§
impl Freeze for CallOpenAPIDefinition
impl RefUnwindSafe for CallOpenAPIDefinition
impl Send for CallOpenAPIDefinition
impl Sync for CallOpenAPIDefinition
impl Unpin for CallOpenAPIDefinition
impl UnsafeUnpin for CallOpenAPIDefinition
impl UnwindSafe for CallOpenAPIDefinition
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