pub trait SizeInBytes {
    // Required method
    fn size_in_bytes() -> usize;
}

Required Methods§

fn size_in_bytes() -> usize

Returns the size in bytes.

Object Safety§

This trait is not object safe.

Implementors§

§

impl<E> SizeInBytes for Boolean<E>
where E: Environment,

§

impl<E> SizeInBytes for Field<E>
where E: Environment,

§

impl<E> SizeInBytes for Group<E>
where E: Environment,

§

impl<E> SizeInBytes for Scalar<E>
where E: Environment,

§

impl<E, I> SizeInBytes for Integer<E, I>
where E: Environment, I: IntegerType,