pub enum SafetyIssueType {
UnsafeFunction,
RawPointerDereference,
FFIBoundary,
ManualMemoryManagement,
TypeTransmutation,
}
Expand description
Types of safety issues
Variants§
Trait Implementations§
Source§impl Clone for SafetyIssueType
impl Clone for SafetyIssueType
Source§fn clone(&self) -> SafetyIssueType
fn clone(&self) -> SafetyIssueType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for SafetyIssueType
impl RefUnwindSafe for SafetyIssueType
impl Send for SafetyIssueType
impl Sync for SafetyIssueType
impl Unpin for SafetyIssueType
impl UnwindSafe for SafetyIssueType
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