pub trait SizeInBits {
// Required method
fn size_in_bits() -> usize;
}
Required Methods§
fn size_in_bits() -> usize
fn size_in_bits() -> usize
Returns the size in bits.
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
§impl<E> SizeInBits for Boolean<E>where
E: Environment,
impl<E> SizeInBits for Boolean<E>where E: Environment,
§fn size_in_bits() -> usize
fn size_in_bits() -> usize
Returns the field size in bits.
§impl<E, I> SizeInBits for Integer<E, I>where
E: Environment,
I: IntegerType,
impl<E, I> SizeInBits for Integer<E, I>where E: Environment, I: IntegerType,
§fn size_in_bits() -> usize
fn size_in_bits() -> usize
Returns the integer size in bits.