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