Struct mathml::acset::ModelRegNet
source · pub struct ModelRegNet {
pub vertices: BTreeSet<RegState>,
pub edges: BTreeSet<RegTransition>,
pub parameters: Option<Vec<Parameter>>,
}
Fields§
§vertices: BTreeSet<RegState>
§edges: BTreeSet<RegTransition>
§parameters: Option<Vec<Parameter>>
Note: parameters is a required field in the schema, but we make it optional since we want to reuse this schema for partial extractions as well.
Trait Implementations§
source§impl Clone for ModelRegNet
impl Clone for ModelRegNet
source§fn clone(&self) -> ModelRegNet
fn clone(&self) -> ModelRegNet
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ModelRegNet
impl Debug for ModelRegNet
source§impl<'de> Deserialize<'de> for ModelRegNet
impl<'de> Deserialize<'de> for ModelRegNet
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 JsonSchema for ModelRegNet
impl JsonSchema for ModelRegNet
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl PartialEq for ModelRegNet
impl PartialEq for ModelRegNet
source§fn eq(&self, other: &ModelRegNet) -> bool
fn eq(&self, other: &ModelRegNet) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ModelRegNet
impl Serialize for ModelRegNet
source§impl<'__s> ToSchema<'__s> for ModelRegNet
impl<'__s> ToSchema<'__s> for ModelRegNet
impl Eq for ModelRegNet
impl StructuralPartialEq for ModelRegNet
Auto Trait Implementations§
impl RefUnwindSafe for ModelRegNet
impl Send for ModelRegNet
impl Sync for ModelRegNet
impl Unpin for ModelRegNet
impl UnwindSafe for ModelRegNet
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.