pub trait CheckAtom:
CheckNull
+ Sized
+ Clone
+ PartialEq
+ Debug
+ Send
+ Sync {
// Provided methods
fn is_bounded(&self, _bounds: Bounds<Self>) -> Fallible<bool> { ... }
fn check_member(
&self,
bounds: Option<Bounds<Self>>,
nan: bool,
) -> Fallible<bool> { ... }
}
Provided Methods§
fn is_bounded(&self, _bounds: Bounds<Self>) -> Fallible<bool>
fn check_member( &self, bounds: Option<Bounds<Self>>, nan: bool, ) -> Fallible<bool>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.