Trait PartialRecord

Source
pub trait PartialRecord {
    type Partial;

    // Required methods
    fn get_partial(&self) -> &Self::Partial;
    fn is_valid_sizes(&self) -> bool;
}
Expand description

implemented for all dynamic records that contain a fixed element

Required Associated Types§

Required Methods§

Source

fn get_partial(&self) -> &Self::Partial

Source

fn is_valid_sizes(&self) -> bool

all dynamic records contain dynamic data and length information in the fixed part. Verify if those 2 values are matching

Implementors§