pub struct FlowInstance {
pub namespace: String,
pub name: String,
pub description: String,
/* private fields */
}
Fields§
§namespace: String
The type namespace.
name: String
The type name.
description: String
Textual description of the flow instance.
Trait Implementations§
Source§impl Clone for FlowInstance
impl Clone for FlowInstance
Source§fn clone(&self) -> FlowInstance
fn clone(&self) -> FlowInstance
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 FlowInstance
impl Debug for FlowInstance
Source§impl From<FlowInstance> for FlowInstance
impl From<FlowInstance> for FlowInstance
Source§impl TableInlineFormatSetter for FlowInstance
impl TableInlineFormatSetter for FlowInstance
fn set_table_inline_format(&mut self, table_inline_format: TableInlineFormat)
Source§impl Tabled for FlowInstance
impl Tabled for FlowInstance
Auto Trait Implementations§
impl Freeze for FlowInstance
impl RefUnwindSafe for FlowInstance
impl Send for FlowInstance
impl Sync for FlowInstance
impl Unpin for FlowInstance
impl UnwindSafe for FlowInstance
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