pub struct FlowRegistration {
pub node: NodeId,
}Expand description
Registration output for flow operators that don’t carry a user
closure (take, skip, last, last_with_default). Zero
FFI on the fire path; only the node id matters.
Fields§
§node: NodeIdImplementations§
Trait Implementations§
Source§impl Clone for FlowRegistration
impl Clone for FlowRegistration
Source§fn clone(&self) -> FlowRegistration
fn clone(&self) -> FlowRegistration
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 FlowRegistration
impl Debug for FlowRegistration
Source§impl From<FlowRegistration> for NodeId
impl From<FlowRegistration> for NodeId
Source§fn from(r: FlowRegistration) -> Self
fn from(r: FlowRegistration) -> Self
Converts to this type from the input type.
impl Copy for FlowRegistration
Auto Trait Implementations§
impl Freeze for FlowRegistration
impl RefUnwindSafe for FlowRegistration
impl Send for FlowRegistration
impl Sync for FlowRegistration
impl Unpin for FlowRegistration
impl UnsafeUnpin for FlowRegistration
impl UnwindSafe for FlowRegistration
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