pub enum InvalidFpFunctor {
ObGen(QualifiedName),
MorGen(QualifiedName),
Dom(QualifiedName),
Cod(QualifiedName),
Eq(QualifiedName),
}Expand description
A failure of a map out of an f.p. category to be functorial.
Variants§
ObGen(QualifiedName)
An object generator not mapped to an object in the codomain category.
MorGen(QualifiedName)
A morphism generator not mapped to a morphism in the codomain category.
Dom(QualifiedName)
A morphism generator whose domain is not preserved.
Cod(QualifiedName)
A morphism generator whose codomain is not preserved.
Eq(QualifiedName)
A path equation in domain presentation that is not respected.
Trait Implementations§
Source§impl Debug for InvalidFpFunctor
impl Debug for InvalidFpFunctor
Source§impl Display for InvalidFpFunctor
impl Display for InvalidFpFunctor
Source§impl Error for InvalidFpFunctor
impl Error for InvalidFpFunctor
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for InvalidFpFunctor
impl PartialEq for InvalidFpFunctor
Source§fn eq(&self, other: &InvalidFpFunctor) -> bool
fn eq(&self, other: &InvalidFpFunctor) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for InvalidFpFunctor
impl StructuralPartialEq for InvalidFpFunctor
Auto Trait Implementations§
impl Freeze for InvalidFpFunctor
impl RefUnwindSafe for InvalidFpFunctor
impl Send for InvalidFpFunctor
impl Sync for InvalidFpFunctor
impl Unpin for InvalidFpFunctor
impl UnsafeUnpin for InvalidFpFunctor
impl UnwindSafe for InvalidFpFunctor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.