pub struct ResultTransformationDetails {
pub callback_context_template: Option<String>,
pub callback_required_template: Option<String>,
pub result_template: Option<String>,
}
Expand description
Represents template to transform the result data.
Fields§
§callback_context_template: Option<String>
Gets or sets the template for callback parameters
callback_required_template: Option<String>
Gets or sets the template to decide whether to callback or not
result_template: Option<String>
Gets or sets the template for result transformation.
Implementations§
Trait Implementations§
source§impl Clone for ResultTransformationDetails
impl Clone for ResultTransformationDetails
source§fn clone(&self) -> ResultTransformationDetails
fn clone(&self) -> ResultTransformationDetails
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 ResultTransformationDetails
impl Debug for ResultTransformationDetails
source§impl Default for ResultTransformationDetails
impl Default for ResultTransformationDetails
source§fn default() -> ResultTransformationDetails
fn default() -> ResultTransformationDetails
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ResultTransformationDetails
impl<'de> Deserialize<'de> for ResultTransformationDetails
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 ResultTransformationDetails
impl PartialEq for ResultTransformationDetails
source§fn eq(&self, other: &ResultTransformationDetails) -> bool
fn eq(&self, other: &ResultTransformationDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResultTransformationDetails
Auto Trait Implementations§
impl RefUnwindSafe for ResultTransformationDetails
impl Send for ResultTransformationDetails
impl Sync for ResultTransformationDetails
impl Unpin for ResultTransformationDetails
impl UnwindSafe for ResultTransformationDetails
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