pub struct SafetyCounts {
pub safe: u64,
pub guarded: u64,
pub unsafe_count: u64,
}Fields§
§safe: u64§guarded: u64§unsafe_count: u64Trait Implementations§
Source§impl Clone for SafetyCounts
impl Clone for SafetyCounts
Source§fn clone(&self) -> SafetyCounts
fn clone(&self) -> SafetyCounts
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 SafetyCounts
impl Debug for SafetyCounts
Source§impl Default for SafetyCounts
impl Default for SafetyCounts
Source§fn default() -> SafetyCounts
fn default() -> SafetyCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SafetyCounts
impl<'de> Deserialize<'de> for SafetyCounts
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 SafetyCounts
impl RefUnwindSafe for SafetyCounts
impl Send for SafetyCounts
impl Sync for SafetyCounts
impl Unpin for SafetyCounts
impl UnsafeUnpin for SafetyCounts
impl UnwindSafe for SafetyCounts
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