pub trait SizeInBytes {
// Required method
fn size_in_bytes() -> usize;
}Required Methods§
sourcefn size_in_bytes() -> usize
fn size_in_bytes() -> usize
Returns the size in bytes.
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
source§impl<E> SizeInBytes for Scalar<E>where
E: Environment,
impl<E> SizeInBytes for Scalar<E>where E: Environment,
source§fn size_in_bytes() -> usize
fn size_in_bytes() -> usize
Returns the scalar size in bytes.