pub struct CallRendererFunction {
pub function_call_id: String,
pub call_function: FunctionCall,
}Expand description
Payload of a callRendererFunction message.
Fields§
§function_call_id: StringCorrelation id; the renderer copies it into its response.
call_function: FunctionCallThe function to invoke, with its arguments.
Trait Implementations§
Source§impl Clone for CallRendererFunction
impl Clone for CallRendererFunction
Source§fn clone(&self) -> CallRendererFunction
fn clone(&self) -> CallRendererFunction
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 CallRendererFunction
impl Debug for CallRendererFunction
Source§impl<'de> Deserialize<'de> for CallRendererFunction
impl<'de> Deserialize<'de> for CallRendererFunction
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 CallRendererFunction
impl PartialEq for CallRendererFunction
Source§fn eq(&self, other: &CallRendererFunction) -> bool
fn eq(&self, other: &CallRendererFunction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallRendererFunction
impl Serialize for CallRendererFunction
impl StructuralPartialEq for CallRendererFunction
Auto Trait Implementations§
impl Freeze for CallRendererFunction
impl RefUnwindSafe for CallRendererFunction
impl Send for CallRendererFunction
impl Sync for CallRendererFunction
impl Unpin for CallRendererFunction
impl UnsafeUnpin for CallRendererFunction
impl UnwindSafe for CallRendererFunction
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