Struct wick_config::v1::OperationInput
source · pub struct OperationInput {
pub name: String,
pub value: Value,
}Expand description
Input to use when calling an operation
Fields§
§name: StringThe name of the input.
value: ValueThe value to pass.
Trait Implementations§
source§impl Clone for OperationInput
impl Clone for OperationInput
source§fn clone(&self) -> OperationInput
fn clone(&self) -> OperationInput
Returns a copy 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 Debug for OperationInput
impl Debug for OperationInput
source§impl<'de> Deserialize<'de> for OperationInput
impl<'de> Deserialize<'de> for OperationInput
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<OperationInput> for OperationInput
impl PartialEq<OperationInput> for OperationInput
source§fn eq(&self, other: &OperationInput) -> bool
fn eq(&self, other: &OperationInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for OperationInput
impl Serialize for OperationInput
source§impl TryFrom<OperationInput> for OperationInputConfig
impl TryFrom<OperationInput> for OperationInputConfig
§type Error = ManifestError
type Error = ManifestError
The type returned in the event of a conversion error.
source§impl TryFrom<OperationInputConfig> for OperationInput
impl TryFrom<OperationInputConfig> for OperationInput
§type Error = ManifestError
type Error = ManifestError
The type returned in the event of a conversion error.
impl StructuralPartialEq for OperationInput
Auto Trait Implementations§
impl RefUnwindSafe for OperationInput
impl Send for OperationInput
impl Sync for OperationInput
impl Unpin for OperationInput
impl UnwindSafe for OperationInput
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