pub struct ProcessNetwork {
pub meta: Option<MetaInfo>,
pub type_graph: GraphType,
pub graphs: Vec<GraphInstance>,
pub components: Vec<Component>,
pub rules: Vec<RuleDPO>,
pub strategies: Vec<Strategy>,
pub queries: Vec<Query>,
pub pg_view: Option<PGView>,
}
Expand description
メインモデル
Fields§
§meta: Option<MetaInfo>
§type_graph: GraphType
§graphs: Vec<GraphInstance>
§components: Vec<Component>
§rules: Vec<RuleDPO>
§strategies: Vec<Strategy>
§queries: Vec<Query>
§pg_view: Option<PGView>
Trait Implementations§
Source§impl Clone for ProcessNetwork
impl Clone for ProcessNetwork
Source§fn clone(&self) -> ProcessNetwork
fn clone(&self) -> ProcessNetwork
Returns a duplicate 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 ProcessNetwork
impl Debug for ProcessNetwork
Source§impl<'de> Deserialize<'de> for ProcessNetwork
impl<'de> Deserialize<'de> for ProcessNetwork
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 ProcessNetwork
impl JsonSchema for ProcessNetwork
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(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &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 ProcessNetwork
impl PartialEq for ProcessNetwork
Source§impl Serialize for ProcessNetwork
impl Serialize for ProcessNetwork
impl StructuralPartialEq for ProcessNetwork
Auto Trait Implementations§
impl Freeze for ProcessNetwork
impl RefUnwindSafe for ProcessNetwork
impl Send for ProcessNetwork
impl Sync for ProcessNetwork
impl Unpin for ProcessNetwork
impl UnwindSafe for ProcessNetwork
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