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