catlog::dbl::model

Trait MutDblModel

Source
pub trait MutDblModel: FgDblModel {
    // Required methods
    fn add_ob(&mut self, x: Self::ObGen, ob_type: Self::ObType) -> bool;
    fn make_mor(&mut self, f: Self::MorGen, mor_type: Self::MorType) -> bool;
    fn get_dom(&self, f: &Self::MorGen) -> Option<&Self::Ob>;
    fn get_cod(&self, f: &Self::MorGen) -> Option<&Self::Ob>;
    fn set_dom(&mut self, f: Self::MorGen, x: Self::Ob) -> Option<Self::Ob>;
    fn set_cod(&mut self, f: Self::MorGen, x: Self::Ob) -> Option<Self::Ob>;

    // Provided method
    fn add_mor(
        &mut self,
        f: Self::MorGen,
        dom: Self::Ob,
        cod: Self::Ob,
        mor_type: Self::MorType,
    ) -> bool { ... }
}
Expand description

A mutable, finitely generated model of a double theory.

Required Methods§

Source

fn add_ob(&mut self, x: Self::ObGen, ob_type: Self::ObType) -> bool

Adds a basic object to the model.

Source

fn make_mor(&mut self, f: Self::MorGen, mor_type: Self::MorType) -> bool

Adds a basic morphism to the model without setting its (co)domain.

Source

fn get_dom(&self, f: &Self::MorGen) -> Option<&Self::Ob>

Gets the domain of a basic morphism, if it is set.

Source

fn get_cod(&self, f: &Self::MorGen) -> Option<&Self::Ob>

Gets the codomain of a basic morphism, if it is set.

Source

fn set_dom(&mut self, f: Self::MorGen, x: Self::Ob) -> Option<Self::Ob>

Sets the domain of a basic morphism.

Source

fn set_cod(&mut self, f: Self::MorGen, x: Self::Ob) -> Option<Self::Ob>

Sets the codomain of a basic morphism.

Provided Methods§

Source

fn add_mor( &mut self, f: Self::MorGen, dom: Self::Ob, cod: Self::Ob, mor_type: Self::MorType, ) -> bool

Adds a basic morphism to the model.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<Id, Cat> MutDblModel for DiscreteDblModel<Id, Cat>
where Id: Eq + Clone + Hash, Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Source§

impl<Id, ThId, S> MutDblModel for DiscreteTabModel<Id, ThId, S>
where Id: Eq + Clone + Hash, ThId: Eq + Clone + Hash, S: BuildHasher,