pub struct ComputerToolCallSafetyCheck {
pub id: String,
pub code: String,
pub message: String,
}
Expand description
A pending safety check for the computer call.
Fields§
§id: String
The ID of the pending safety check.
code: String
The type of the pending safety check.
message: String
Details about the pending safety check.
Trait Implementations§
Source§impl Clone for ComputerToolCallSafetyCheck
impl Clone for ComputerToolCallSafetyCheck
Source§fn clone(&self) -> ComputerToolCallSafetyCheck
fn clone(&self) -> ComputerToolCallSafetyCheck
Returns a copy 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 ComputerToolCallSafetyCheck
impl Debug for ComputerToolCallSafetyCheck
Source§impl Default for ComputerToolCallSafetyCheck
impl Default for ComputerToolCallSafetyCheck
Source§fn default() -> ComputerToolCallSafetyCheck
fn default() -> ComputerToolCallSafetyCheck
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ComputerToolCallSafetyCheck
impl RefUnwindSafe for ComputerToolCallSafetyCheck
impl Send for ComputerToolCallSafetyCheck
impl Sync for ComputerToolCallSafetyCheck
impl Unpin for ComputerToolCallSafetyCheck
impl UnwindSafe for ComputerToolCallSafetyCheck
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