pub trait SignedExpBits {
type T: ExpBits;
// Required method
fn neg_and_bits(self) -> (bool, Self::T);
}Required Associated Types§
Required Methods§
fn neg_and_bits(self) -> (bool, Self::T)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".