pub trait BlockValidation {
    fn flags(&self) -> BlockControlFlags;
fn set(&mut self, flags: BlockControlFlags); fn validate(&self) -> Result<(), Error>
    where
        Self: Sized
, { ... }
fn contains(&self, flags: BlockControlFlags) -> bool
    where
        Self: Sized
, { ... } }

Required methods

Provided methods

Implementors