pub struct GraphHelper {
pub name: &'static str,
pub symbol: RuntimeSymbol,
pub params: &'static [GraphParam],
pub result: GraphResult,
}Expand description
One graph prelude helper: the source name, the wrapper it lowers to, and the shape of its signature.
Fields§
§name: &'static str§symbol: RuntimeSymbol§params: &'static [GraphParam]§result: GraphResultImplementations§
Trait Implementations§
Source§impl Clone for GraphHelper
impl Clone for GraphHelper
Source§fn clone(&self) -> GraphHelper
fn clone(&self) -> GraphHelper
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 moreimpl Copy for GraphHelper
Auto Trait Implementations§
impl Freeze for GraphHelper
impl RefUnwindSafe for GraphHelper
impl Send for GraphHelper
impl Sync for GraphHelper
impl Unpin for GraphHelper
impl UnsafeUnpin for GraphHelper
impl UnwindSafe for GraphHelper
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