pub struct FlowgraphId(pub usize);Expand description
Identifier of a flowgraph known to a runtime control handle.
Runtime handles assign these ids as flowgraphs are registered with the control plane. They are used by the native REST API and by remote clients.
Tuple Fields§
§0: usizeTrait Implementations§
Source§impl Clone for FlowgraphId
impl Clone for FlowgraphId
Source§fn clone(&self) -> FlowgraphId
fn clone(&self) -> FlowgraphId
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FlowgraphId
impl Debug for FlowgraphId
Source§impl<'de> Deserialize<'de> for FlowgraphId
impl<'de> Deserialize<'de> for FlowgraphId
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 Display for FlowgraphId
impl Display for FlowgraphId
Source§impl From<usize> for FlowgraphId
impl From<usize> for FlowgraphId
Source§impl PartialEq for FlowgraphId
impl PartialEq for FlowgraphId
Source§fn eq(&self, other: &FlowgraphId) -> bool
fn eq(&self, other: &FlowgraphId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FlowgraphId
impl Serialize for FlowgraphId
impl Copy for FlowgraphId
impl Eq for FlowgraphId
impl StructuralPartialEq for FlowgraphId
Auto Trait Implementations§
impl Freeze for FlowgraphId
impl RefUnwindSafe for FlowgraphId
impl Send for FlowgraphId
impl Sync for FlowgraphId
impl Unpin for FlowgraphId
impl UnsafeUnpin for FlowgraphId
impl UnwindSafe for FlowgraphId
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