pub enum InvalidDblModel<Id> {
Dom(Id),
Cod(Id),
ObType(Id),
MorType(Id),
DomType(Id),
CodType(Id),
EqLhs(Id),
EqRhs(Id),
EqSrc(Id),
EqTgt(Id),
}
Expand description
A failure of a model of a double theory to be well defined.
We currently are encompassing error variants for all kinds of double theories in a single enum. That will likely become unviable but it’s convenient for now.
TODO: We are missing the case that an equation has different composite morphism types on left and right hand sides.
Variants§
Dom(Id)
Domain of basic morphism is undefined or invalid.
Cod(Id)
Codomain of basic morphism is missing or invalid.
ObType(Id)
Basic object has invalid object type.
MorType(Id)
Basic morphism has invalid morphism type.
DomType(Id)
Domain of basic morphism has type incompatible with morphism type.
CodType(Id)
Codomain of basic morphism has type incompatible with morphism type.
EqLhs(Id)
Equation has left hand side that is not a well defined path.
EqRhs(Id)
Equation has right hand side that is not a well defined path.
EqSrc(Id)
Equation has different sources on left and right hand sides.
EqTgt(Id)
Equation has different sources on left and right hand sides.
Trait Implementations§
Source§impl<Id: Clone> Clone for InvalidDblModel<Id>
impl<Id: Clone> Clone for InvalidDblModel<Id>
Source§fn clone(&self) -> InvalidDblModel<Id>
fn clone(&self) -> InvalidDblModel<Id>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<Id: Debug> Debug for InvalidDblModel<Id>
impl<Id: Debug> Debug for InvalidDblModel<Id>
Source§impl<'de, Id> Deserialize<'de> for InvalidDblModel<Id>where
Id: Deserialize<'de>,
impl<'de, Id> Deserialize<'de> for InvalidDblModel<Id>where
Id: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl<Id> From<InvalidDblModel<Id>> for JsValuewhere
InvalidDblModel<Id>: Serialize,
impl<Id> From<InvalidDblModel<Id>> for JsValuewhere
InvalidDblModel<Id>: Serialize,
Source§fn from(value: InvalidDblModel<Id>) -> Self
fn from(value: InvalidDblModel<Id>) -> Self
Source§impl<Id> FromWasmAbi for InvalidDblModel<Id>where
Self: DeserializeOwned,
impl<Id> FromWasmAbi for InvalidDblModel<Id>where
Self: DeserializeOwned,
Source§impl<Id> IntoWasmAbi for InvalidDblModel<Id>where
InvalidDblModel<Id>: Serialize,
impl<Id> IntoWasmAbi for InvalidDblModel<Id>where
InvalidDblModel<Id>: Serialize,
Source§impl<Id> OptionFromWasmAbi for InvalidDblModel<Id>where
Self: DeserializeOwned,
impl<Id> OptionFromWasmAbi for InvalidDblModel<Id>where
Self: DeserializeOwned,
Source§impl<Id> OptionIntoWasmAbi for InvalidDblModel<Id>where
InvalidDblModel<Id>: Serialize,
impl<Id> OptionIntoWasmAbi for InvalidDblModel<Id>where
InvalidDblModel<Id>: Serialize,
Source§impl<Id: PartialEq> PartialEq for InvalidDblModel<Id>
impl<Id: PartialEq> PartialEq for InvalidDblModel<Id>
Source§impl<Id> RefFromWasmAbi for InvalidDblModel<Id>where
Self: DeserializeOwned,
impl<Id> RefFromWasmAbi for InvalidDblModel<Id>where
Self: DeserializeOwned,
Source§type Abi = <JsType as RefFromWasmAbi>::Abi
type Abi = <JsType as RefFromWasmAbi>::Abi
Self
are recovered from.Source§type Anchor = SelfOwner<InvalidDblModel<Id>>
type Anchor = SelfOwner<InvalidDblModel<Id>>
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl<Id> Serialize for InvalidDblModel<Id>where
Id: Serialize,
impl<Id> Serialize for InvalidDblModel<Id>where
Id: Serialize,
Source§impl<Id> Tsify for InvalidDblModel<Id>
impl<Id> Tsify for InvalidDblModel<Id>
const DECL: &'static str = "/**\n * A failure of a model of a double theory to be well defined.\\n\\nWe currently are encompassing error variants for all kinds of double theories in\\na single enum. That will likely become unviable but it\\\'s convenient for now.\\n\\nTODO: We are missing the case that an equation has different composite morphism\\ntypes on left and right hand sides.\\n\n */\nexport type InvalidDblModel<Id> = { tag: \"Dom\"; content: Id } | { tag: \"Cod\"; content: Id } | { tag: \"ObType\"; content: Id } | { tag: \"MorType\"; content: Id } | { tag: \"DomType\"; content: Id } | { tag: \"CodType\"; content: Id } | { tag: \"EqLhs\"; content: Id } | { tag: \"EqRhs\"; content: Id } | { tag: \"EqSrc\"; content: Id } | { tag: \"EqTgt\"; content: Id };"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
Source§impl<Id> VectorFromWasmAbi for InvalidDblModel<Id>where
Self: DeserializeOwned,
impl<Id> VectorFromWasmAbi for InvalidDblModel<Id>where
Self: DeserializeOwned,
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Source§impl<Id> VectorIntoWasmAbi for InvalidDblModel<Id>where
InvalidDblModel<Id>: Serialize,
impl<Id> VectorIntoWasmAbi for InvalidDblModel<Id>where
InvalidDblModel<Id>: Serialize,
type Abi = <JsType as VectorIntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[Self]>) -> Self::Abi
Source§impl<Id> WasmDescribeVector for InvalidDblModel<Id>
impl<Id> WasmDescribeVector for InvalidDblModel<Id>
impl<Id: Eq> Eq for InvalidDblModel<Id>
impl<Id> StructuralPartialEq for InvalidDblModel<Id>
Auto Trait Implementations§
impl<Id> Freeze for InvalidDblModel<Id>where
Id: Freeze,
impl<Id> RefUnwindSafe for InvalidDblModel<Id>where
Id: RefUnwindSafe,
impl<Id> Send for InvalidDblModel<Id>where
Id: Send,
impl<Id> Sync for InvalidDblModel<Id>where
Id: Sync,
impl<Id> Unpin for InvalidDblModel<Id>where
Id: Unpin,
impl<Id> UnwindSafe for InvalidDblModel<Id>where
Id: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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>
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 moreSource§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.§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>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
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
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.