pub struct ResolvedFlow(/* private fields */);Expand description
Resolved flow
Implementations§
Source§impl ResolvedFlow
impl ResolvedFlow
pub fn new( identifier: Fragment, namespace: ResolvedNamespace, def: FlowDef, ) -> Self
Sourcepub fn namespace(&self) -> &ResolvedNamespace
pub fn namespace(&self) -> &ResolvedNamespace
Get the namespace
Sourcepub fn identifier(&self) -> &Fragment
pub fn identifier(&self) -> &Fragment
Get the identifier
Sourcepub fn fully_qualified_name(&self) -> String
pub fn fully_qualified_name(&self) -> String
Get fully qualified name
Sourcepub fn to_static(&self) -> ResolvedFlow
pub fn to_static(&self) -> ResolvedFlow
Convert to owned version with ’static lifetime
Trait Implementations§
Source§impl Clone for ResolvedFlow
impl Clone for ResolvedFlow
Source§fn clone(&self) -> ResolvedFlow
fn clone(&self) -> ResolvedFlow
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 moreAuto Trait Implementations§
impl Freeze for ResolvedFlow
impl RefUnwindSafe for ResolvedFlow
impl Send for ResolvedFlow
impl Sync for ResolvedFlow
impl Unpin for ResolvedFlow
impl UnwindSafe for ResolvedFlow
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