pub struct DiagramEqnDecl {
pub name: String,
pub id: Uuid,
pub lhs: Option<Mor>,
pub rhs: Option<Mor>,
}Expand description
Declares an equation in a diagram in a model of a double theory.
Fields§
§name: StringHuman-readable label for equation.
id: UuidGlobally unique identifier of equation.
lhs: Option<Mor>The left-hand side of the equation, if defined.
rhs: Option<Mor>The right-hand side of the equation, if defined.
Trait Implementations§
Source§impl Debug for DiagramEqnDecl
impl Debug for DiagramEqnDecl
Source§impl<'de> Deserialize<'de> for DiagramEqnDecl
impl<'de> Deserialize<'de> for DiagramEqnDecl
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<DiagramEqnDecl> for JsValuewhere
DiagramEqnDecl: Serialize,
impl From<DiagramEqnDecl> for JsValuewhere
DiagramEqnDecl: Serialize,
Source§fn from(value: DiagramEqnDecl) -> Self
fn from(value: DiagramEqnDecl) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for DiagramEqnDeclwhere
Self: DeserializeOwned,
impl FromWasmAbi for DiagramEqnDeclwhere
Self: DeserializeOwned,
Source§impl IntoWasmAbi for &DiagramEqnDeclwhere
DiagramEqnDecl: Serialize,
impl IntoWasmAbi for &DiagramEqnDeclwhere
DiagramEqnDecl: Serialize,
Source§impl IntoWasmAbi for DiagramEqnDeclwhere
DiagramEqnDecl: Serialize,
impl IntoWasmAbi for DiagramEqnDeclwhere
DiagramEqnDecl: Serialize,
Source§impl OptionFromWasmAbi for DiagramEqnDeclwhere
Self: DeserializeOwned,
impl OptionFromWasmAbi for DiagramEqnDeclwhere
Self: DeserializeOwned,
Source§impl OptionIntoWasmAbi for DiagramEqnDeclwhere
DiagramEqnDecl: Serialize,
impl OptionIntoWasmAbi for DiagramEqnDeclwhere
DiagramEqnDecl: Serialize,
Source§impl PartialEq for DiagramEqnDecl
impl PartialEq for DiagramEqnDecl
Source§impl RefFromWasmAbi for DiagramEqnDeclwhere
Self: DeserializeOwned,
impl RefFromWasmAbi for DiagramEqnDeclwhere
Self: DeserializeOwned,
Source§type Abi = <JsType as RefFromWasmAbi>::Abi
type Abi = <JsType as RefFromWasmAbi>::Abi
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = SelfOwner<DiagramEqnDecl>
type Anchor = SelfOwner<DiagramEqnDecl>
The type that holds the reference to
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 Serialize for DiagramEqnDecl
impl Serialize for DiagramEqnDecl
Source§impl Tsify for DiagramEqnDecl
impl Tsify for DiagramEqnDecl
const DECL: &'static str = "/**\n * Declares an equation in a diagram in a model of a double theory.\n */\nexport interface DiagramEqnDecl {\n /**\n * Human-readable label for equation.\n */\n name: string;\n /**\n * Globally unique identifier of equation.\n */\n id: Uuid;\n /**\n * The left-hand side of the equation, if defined.\n */\n lhs: Mor | null;\n /**\n * The right-hand side of the equation, if defined.\n */\n rhs: Mor | null;\n}"
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 VectorFromWasmAbi for DiagramEqnDeclwhere
Self: DeserializeOwned,
impl VectorFromWasmAbi for DiagramEqnDeclwhere
Self: DeserializeOwned,
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Source§impl VectorIntoWasmAbi for DiagramEqnDeclwhere
DiagramEqnDecl: Serialize,
impl VectorIntoWasmAbi for DiagramEqnDeclwhere
DiagramEqnDecl: Serialize,
type Abi = <JsType as VectorIntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[Self]>) -> Self::Abi
Source§impl WasmDescribeVector for DiagramEqnDecl
impl WasmDescribeVector for DiagramEqnDecl
impl Eq for DiagramEqnDecl
impl StructuralPartialEq for DiagramEqnDecl
Auto Trait Implementations§
impl Freeze for DiagramEqnDecl
impl RefUnwindSafe for DiagramEqnDecl
impl Send for DiagramEqnDecl
impl Sync for DiagramEqnDecl
impl Unpin for DiagramEqnDecl
impl UnwindSafe for DiagramEqnDecl
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<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 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
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.