Sign in
apache
/
iggy
/
refs/heads/update_dockerfile
/
.
/
server
/
src
/
streaming
/
sizeable.rs
blob: 43114d7373bd73963daf919bd5177b888703013f [
file
] [
log
] [
blame
]
/// Trait for types that return their size in bytes.
pub
trait
Sizeable
{
fn
get_size_bytes
(&
self
)
->
u32
;
}