pub struct FlowType {
pub namespace: String,
pub name: String,
pub description: String,
pub wrapper_entity_instance: EntityInstance,
pub entity_instances: Vec<EntityInstance>,
pub relation_instances: Vec<RelationInstance>,
pub variables: Variables,
pub extensions: Vec<Extension>,
/* private fields */
}
Fields§
§namespace: String
The namespace of the flow type.
name: String
The name of the extension.
description: String
Textual description of the extension.
wrapper_entity_instance: EntityInstance
The wrapper entity instance.
entity_instances: Vec<EntityInstance>
The entity instances.
relation_instances: Vec<RelationInstance>
The relation instances.
variables: Variables
The variables.
extensions: Vec<Extension>
The extensions.
Trait Implementations§
Source§impl TableInlineFormatSetter for FlowType
impl TableInlineFormatSetter for FlowType
fn set_table_inline_format(&mut self, table_inline_format: TableInlineFormat)
Auto Trait Implementations§
impl Freeze for FlowType
impl RefUnwindSafe for FlowType
impl Send for FlowType
impl Sync for FlowType
impl Unpin for FlowType
impl UnwindSafe for FlowType
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<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>
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 more