pub struct EffectSource {
pub tool_call_id: Option<String>,
pub tool_name: Option<String>,
}Expand description
Source tool call that produced an effect request.
Fields§
§tool_call_id: Option<String>Source model tool-call id, when produced by a tool.
tool_name: Option<String>Source tool name, when produced by a tool.
Trait Implementations§
Source§impl Clone for EffectSource
impl Clone for EffectSource
Source§fn clone(&self) -> EffectSource
fn clone(&self) -> EffectSource
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 EffectSource
impl Debug for EffectSource
Source§impl Default for EffectSource
impl Default for EffectSource
Source§fn default() -> EffectSource
fn default() -> EffectSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EffectSource
impl<'de> Deserialize<'de> for EffectSource
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
impl Eq for EffectSource
Source§impl PartialEq for EffectSource
impl PartialEq for EffectSource
Source§impl Serialize for EffectSource
impl Serialize for EffectSource
impl StructuralPartialEq for EffectSource
Auto Trait Implementations§
impl Freeze for EffectSource
impl RefUnwindSafe for EffectSource
impl Send for EffectSource
impl Sync for EffectSource
impl Unpin for EffectSource
impl UnsafeUnpin for EffectSource
impl UnwindSafe for EffectSource
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