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