blob: 9d121cb39af19f177c1a717da9aaf8ae542a1739 [file]
use iggy::utils::byte_size::IggyByteSize;
/// Trait for types that return their size in bytes.
/// repeated from the sdk because of the coherence rule, see messages.rs
pub trait LocalSizeable {
fn get_size_bytes(&self) -> IggyByteSize;
}