pub struct FunctionCallInner {
pub name: String,
pub arguments: Value,
}Fields§
§name: String関数名
呼び出された関数の名前
arguments: Value関数の引数
JSONとして提供されます
例: {“input”: “Hello, world!”}
Trait Implementations§
Source§impl Clone for FunctionCallInner
impl Clone for FunctionCallInner
Source§fn clone(&self) -> FunctionCallInner
fn clone(&self) -> FunctionCallInner
Returns a duplicate 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 FunctionCallInner
impl Debug for FunctionCallInner
Source§impl<'de> Deserialize<'de> for FunctionCallInner
impl<'de> Deserialize<'de> for FunctionCallInner
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
Auto Trait Implementations§
impl Freeze for FunctionCallInner
impl RefUnwindSafe for FunctionCallInner
impl Send for FunctionCallInner
impl Sync for FunctionCallInner
impl Unpin for FunctionCallInner
impl UnwindSafe for FunctionCallInner
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