pub struct FusionRuleRegistration {
pub priority: u32,
pub build: fn() -> FusionRule,
}Expand description
A fusion rule a node crate contributes: the node library registers
its rules through inventory, so the compiler knows no node by name
(polydat_nodes::hash, polydat_nodes::lerp). Rules apply in
ascending priority, then by name, so the order is the same
however the crates link.
Fields§
§priority: u32Where the rule sits in the order rules are tried.
build: fn() -> FusionRuleBuilds the rule.
Trait Implementations§
impl Collect for FusionRuleRegistration
Auto Trait Implementations§
impl Freeze for FusionRuleRegistration
impl RefUnwindSafe for FusionRuleRegistration
impl Send for FusionRuleRegistration
impl Sync for FusionRuleRegistration
impl Unpin for FusionRuleRegistration
impl UnsafeUnpin for FusionRuleRegistration
impl UnwindSafe for FusionRuleRegistration
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more