pub enum RedundancyStrategy {
Replicate,
AlternativePath,
Materialize,
Prefetch,
}Variants§
Replicate
Duplicate the node’s computation
AlternativePath
Add alternative path
Materialize
Cache intermediate results
Prefetch
Pre-compute during idle time
Trait Implementations§
Source§impl Clone for RedundancyStrategy
impl Clone for RedundancyStrategy
Source§fn clone(&self) -> RedundancyStrategy
fn clone(&self) -> RedundancyStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RedundancyStrategy
impl RefUnwindSafe for RedundancyStrategy
impl Send for RedundancyStrategy
impl Sync for RedundancyStrategy
impl Unpin for RedundancyStrategy
impl UnsafeUnpin for RedundancyStrategy
impl UnwindSafe for RedundancyStrategy
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