pub enum SafetyAlertErrorType {
PotentiallyUnintendedDataTransfer,
PotentiallyUnintendedDataAccess,
PotentiallyUnintendedDestructiveActivity,
Other,
}Available on crate feature
safety-types only.Variants§
PotentiallyUnintendedDataTransfer
PotentiallyUnintendedDataAccess
PotentiallyUnintendedDestructiveActivity
Other
Trait Implementations§
Source§impl Clone for SafetyAlertErrorType
impl Clone for SafetyAlertErrorType
Source§fn clone(&self) -> SafetyAlertErrorType
fn clone(&self) -> SafetyAlertErrorType
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 SafetyAlertErrorType
impl Debug for SafetyAlertErrorType
Source§impl<'de> Deserialize<'de> for SafetyAlertErrorType
impl<'de> Deserialize<'de> for SafetyAlertErrorType
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
Source§impl PartialEq for SafetyAlertErrorType
impl PartialEq for SafetyAlertErrorType
Source§impl Serialize for SafetyAlertErrorType
impl Serialize for SafetyAlertErrorType
impl StructuralPartialEq for SafetyAlertErrorType
Auto Trait Implementations§
impl Freeze for SafetyAlertErrorType
impl RefUnwindSafe for SafetyAlertErrorType
impl Send for SafetyAlertErrorType
impl Sync for SafetyAlertErrorType
impl Unpin for SafetyAlertErrorType
impl UnsafeUnpin for SafetyAlertErrorType
impl UnwindSafe for SafetyAlertErrorType
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