pub struct NormalizedRequest {
pub request_id: String,
pub tool_name: String,
pub server_id: String,
pub agent_id: String,
pub arguments: Value,
}Expand description
Proof-facing request shape for the current evaluated tool call.
Fields§
§request_id: String§tool_name: String§server_id: String§agent_id: String§arguments: ValueTrait Implementations§
Source§impl Clone for NormalizedRequest
impl Clone for NormalizedRequest
Source§fn clone(&self) -> NormalizedRequest
fn clone(&self) -> NormalizedRequest
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 NormalizedRequest
impl Debug for NormalizedRequest
Source§impl<'de> Deserialize<'de> for NormalizedRequest
impl<'de> Deserialize<'de> for NormalizedRequest
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 From<&PortableToolCallRequest> for NormalizedRequest
impl From<&PortableToolCallRequest> for NormalizedRequest
Source§fn from(request: &PortableToolCallRequest) -> Self
fn from(request: &PortableToolCallRequest) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NormalizedRequest
impl PartialEq for NormalizedRequest
Source§impl Serialize for NormalizedRequest
impl Serialize for NormalizedRequest
impl Eq for NormalizedRequest
impl StructuralPartialEq for NormalizedRequest
Auto Trait Implementations§
impl Freeze for NormalizedRequest
impl RefUnwindSafe for NormalizedRequest
impl Send for NormalizedRequest
impl Sync for NormalizedRequest
impl Unpin for NormalizedRequest
impl UnsafeUnpin for NormalizedRequest
impl UnwindSafe for NormalizedRequest
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