usesuper::Block;implsuper::Block{/// Constructor.
pubfnnew(value:u16, length:u8)-> Block{
Block { value, length }}/// Returns a content (total rank to go) of the block.
pubfnvalue(&self)->u16{self.value
}/// Returns size of the block.
pubfnlength(&self)->u8{self.length
}}