pub struct AcknowledgedSafetyCheck {
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 AcknowledgedSafetyCheck
impl Clone for AcknowledgedSafetyCheck
Source§fn clone(&self) -> AcknowledgedSafetyCheck
fn clone(&self) -> AcknowledgedSafetyCheck
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 AcknowledgedSafetyCheck
impl Debug for AcknowledgedSafetyCheck
Source§impl<'de> Deserialize<'de> for AcknowledgedSafetyCheck
impl<'de> Deserialize<'de> for AcknowledgedSafetyCheck
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 AcknowledgedSafetyCheck
impl RefUnwindSafe for AcknowledgedSafetyCheck
impl Send for AcknowledgedSafetyCheck
impl Sync for AcknowledgedSafetyCheck
impl Unpin for AcknowledgedSafetyCheck
impl UnsafeUnpin for AcknowledgedSafetyCheck
impl UnwindSafe for AcknowledgedSafetyCheck
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