pub struct FunctionCallResponseBuilder<'a> {
pub result: <Encoded<'a> as DataType>::BuilderForStruct<'a>,
}Expand description
The FunctionCallResponse struct represents a message containing the result of a function call.
Fields§
§result: <Encoded<'a> as DataType>::BuilderForStruct<'a>The function result value.
Implementations§
Trait Implementations§
Source§impl<'a> Debug for FunctionCallResponseBuilder<'a>
impl<'a> Debug for FunctionCallResponseBuilder<'a>
Source§impl<'a> Default for FunctionCallResponseBuilder<'a>
impl<'a> Default for FunctionCallResponseBuilder<'a>
Source§fn default() -> FunctionCallResponseBuilder<'a>
fn default() -> FunctionCallResponseBuilder<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> From<FunctionCallResponseBuilder<'a>> for BackendBuilder<'a>
impl<'a> From<FunctionCallResponseBuilder<'a>> for BackendBuilder<'a>
Source§fn from(message: FunctionCallResponseBuilder<'a>) -> Self
fn from(message: FunctionCallResponseBuilder<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> PartialEq for FunctionCallResponseBuilder<'a>
impl<'a> PartialEq for FunctionCallResponseBuilder<'a>
Source§fn eq(&self, other: &FunctionCallResponseBuilder<'a>) -> bool
fn eq(&self, other: &FunctionCallResponseBuilder<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Eq for FunctionCallResponseBuilder<'a>
impl<'a> StructuralPartialEq for FunctionCallResponseBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for FunctionCallResponseBuilder<'a>
impl<'a> RefUnwindSafe for FunctionCallResponseBuilder<'a>
impl<'a> Send for FunctionCallResponseBuilder<'a>
impl<'a> Sync for FunctionCallResponseBuilder<'a>
impl<'a> Unpin for FunctionCallResponseBuilder<'a>
impl<'a> UnwindSafe for FunctionCallResponseBuilder<'a>
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