pub struct FlowOutcomeInfoGraphs<K>(/* private fields */);Expand description
Shared memory for Map<CmdExecId, InfoGraph>.
This is intended to be used for example / actual outcome diagrams.
Implementations§
Source§impl<K> FlowOutcomeInfoGraphs<K>
impl<K> FlowOutcomeInfoGraphs<K>
Sourcepub fn into_inner(self) -> FlowInfoGraphs<K>
pub fn into_inner(self) -> FlowInfoGraphs<K>
Returns the underlying FlowInfoGraphs<K>.
Trait Implementations§
Source§impl<K: Clone> Clone for FlowOutcomeInfoGraphs<K>
impl<K: Clone> Clone for FlowOutcomeInfoGraphs<K>
Source§fn clone(&self) -> FlowOutcomeInfoGraphs<K>
fn clone(&self) -> FlowOutcomeInfoGraphs<K>
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<K: Debug> Debug for FlowOutcomeInfoGraphs<K>
impl<K: Debug> Debug for FlowOutcomeInfoGraphs<K>
Source§impl<K> Default for FlowOutcomeInfoGraphs<K>
impl<K> Default for FlowOutcomeInfoGraphs<K>
Source§impl<K> Deref for FlowOutcomeInfoGraphs<K>
impl<K> Deref for FlowOutcomeInfoGraphs<K>
Source§type Target = FlowInfoGraphs<K>
type Target = FlowInfoGraphs<K>
The resulting type after dereferencing.
Source§fn deref(&self) -> &FlowInfoGraphs<K>
fn deref(&self) -> &FlowInfoGraphs<K>
Dereferences the value.
Source§impl<K> DerefMut for FlowOutcomeInfoGraphs<K>
impl<K> DerefMut for FlowOutcomeInfoGraphs<K>
Source§fn deref_mut(&mut self) -> &mut FlowInfoGraphs<K>
fn deref_mut(&mut self) -> &mut FlowInfoGraphs<K>
Mutably dereferences the value.
Auto Trait Implementations§
impl<K> Freeze for FlowOutcomeInfoGraphs<K>
impl<K> RefUnwindSafe for FlowOutcomeInfoGraphs<K>
impl<K> Send for FlowOutcomeInfoGraphs<K>where
K: Send,
impl<K> Sync for FlowOutcomeInfoGraphs<K>where
K: Send,
impl<K> Unpin for FlowOutcomeInfoGraphs<K>
impl<K> UnwindSafe for FlowOutcomeInfoGraphs<K>
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