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§
fn get_partial(&self) -> &Self::Partial
Sourcefn is_valid_sizes(&self) -> bool
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