Skip to main content

CompositionValidator

Struct CompositionValidator 

Source
pub struct CompositionValidator { /* private fields */ }
Expand description

Runtime composition validator backed by a loaded matrix.

Wraps a CompositionMatrix and provides efficient query methods for checking whether a given protocol×role×traffic_kind combination is supported, and what tier/evidence it has.

Implementations§

Source§

impl CompositionValidator

Source

pub fn load() -> Option<Self>

Load the composition matrix from the canonical path.

Source

pub fn from_file(path: &Path) -> Result<Self, CompositionValidationError>

Load from an explicit file path.

Source

pub fn query( &self, protocol: &str, role: &str, traffic_kind: &str, ) -> Option<&CompositionCell>

Query a single composition cell.

Source

pub fn query_chain( &self, from_protocol: &str, to_protocol: &str, traffic_kind: &str, ) -> Option<&ChainComposition>

Query a chain composition.

Source

pub fn is_supported( &self, protocol: &str, role: &str, traffic_kind: &str, ) -> bool

Check if a protocol+role+traffic_kind combination is supported (non-unsupported tier).

Source

pub fn protocols_at_or_above_tier( &self, role: &str, traffic_kind: &str, min_tier: &str, ) -> Vec<&str>

Get all protocols supporting a given role+traffic_kind at or above a tier.

Source

pub fn constraints_for(&self, protocol: &str) -> Vec<&CompositionConstraint>

Get all constraints that apply to a given protocol.

Source

pub fn inner(&self) -> &CompositionMatrix

Return a reference to the inner matrix.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.