pub struct ComputerCallOutputAcknowledgedSafetyCheck {
pub id: String,
pub code: Option<String>,
pub message: Option<String>,
}Expand description
A pending safety check for the computer call.
Fields§
§id: StringThe ID of the pending safety check.
code: Option<String>The type of the pending safety check.
message: Option<String>Details about the pending safety check.
Trait Implementations§
Source§impl Clone for ComputerCallOutputAcknowledgedSafetyCheck
impl Clone for ComputerCallOutputAcknowledgedSafetyCheck
Source§fn clone(&self) -> ComputerCallOutputAcknowledgedSafetyCheck
fn clone(&self) -> ComputerCallOutputAcknowledgedSafetyCheck
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<'de> Deserialize<'de> for ComputerCallOutputAcknowledgedSafetyCheck
impl<'de> Deserialize<'de> for ComputerCallOutputAcknowledgedSafetyCheck
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 ComputerCallOutputAcknowledgedSafetyCheck
impl RefUnwindSafe for ComputerCallOutputAcknowledgedSafetyCheck
impl Send for ComputerCallOutputAcknowledgedSafetyCheck
impl Sync for ComputerCallOutputAcknowledgedSafetyCheck
impl Unpin for ComputerCallOutputAcknowledgedSafetyCheck
impl UnsafeUnpin for ComputerCallOutputAcknowledgedSafetyCheck
impl UnwindSafe for ComputerCallOutputAcknowledgedSafetyCheck
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