Struct mathml::acset::ModelPetriNet
source · pub struct ModelPetriNet {
pub states: BTreeSet<State>,
pub transitions: BTreeSet<Transition>,
pub metadata: Option<Metadata>,
}
Fields§
§states: BTreeSet<State>
§transitions: BTreeSet<Transition>
§metadata: Option<Metadata>
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 ModelPetriNet
impl Clone for ModelPetriNet
source§fn clone(&self) -> ModelPetriNet
fn clone(&self) -> ModelPetriNet
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 ModelPetriNet
impl Debug for ModelPetriNet
source§impl<'de> Deserialize<'de> for ModelPetriNet
impl<'de> Deserialize<'de> for ModelPetriNet
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 ModelPetriNet
impl JsonSchema for ModelPetriNet
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 ModelPetriNet
impl PartialEq for ModelPetriNet
source§fn eq(&self, other: &ModelPetriNet) -> bool
fn eq(&self, other: &ModelPetriNet) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ModelPetriNet
impl Serialize for ModelPetriNet
source§impl<'__s> ToSchema<'__s> for ModelPetriNet
impl<'__s> ToSchema<'__s> for ModelPetriNet
impl Eq for ModelPetriNet
impl StructuralPartialEq for ModelPetriNet
Auto Trait Implementations§
impl RefUnwindSafe for ModelPetriNet
impl Send for ModelPetriNet
impl Sync for ModelPetriNet
impl Unpin for ModelPetriNet
impl UnwindSafe for ModelPetriNet
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.