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