pub struct ComputerCallSafetyCheckParam {
pub code: Option<String>,
pub id: String,
pub message: Option<String>,
}
Expand description
§on openapi.yaml
ComputerCallSafetyCheckParam:
properties:
id:
type: string
description: The ID of the pending safety check.
code:
anyOf:
- type: string
description: The type of the pending safety check.
- type: "null"
message:
anyOf:
- type: string
description: Details about the pending safety check.
- type: "null"
type: object
required:
- id
description: A pending safety check for the computer call.
Fields§
§code: Option<String>
§id: String
The ID of the pending safety check.
message: Option<String>
Trait Implementations§
Source§impl Debug for ComputerCallSafetyCheckParam
impl Debug for ComputerCallSafetyCheckParam
Source§impl<'de> Deserialize<'de> for ComputerCallSafetyCheckParam
impl<'de> Deserialize<'de> for ComputerCallSafetyCheckParam
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 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