Struct zenoh_flow_nodes::NodeDeclaration
source · pub struct NodeDeclaration<C> {
pub rustc_version: &'static str,
pub core_version: &'static str,
pub constructor: C,
}Expand description
(⚙️ internal) Declaration expected in the library that will be loaded.
This structure is automatically created by the procedural macros export_operator, export_source and export_sink.
Fields§
§rustc_version: &'static str§core_version: &'static str§constructor: CAuto Trait Implementations§
impl<C> Freeze for NodeDeclaration<C>where
C: Freeze,
impl<C> RefUnwindSafe for NodeDeclaration<C>where
C: RefUnwindSafe,
impl<C> Send for NodeDeclaration<C>where
C: Send,
impl<C> Sync for NodeDeclaration<C>where
C: Sync,
impl<C> Unpin for NodeDeclaration<C>where
C: Unpin,
impl<C> UnwindSafe for NodeDeclaration<C>where
C: UnwindSafe,
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