pub struct WaveResult {
pub waves: Vec<Wave>,
pub circular_deps: Vec<String>,
}Expand description
Result of wave computation
Fields§
§waves: Vec<Wave>Computed waves
circular_deps: Vec<String>Tasks with circular dependencies (if any)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WaveResult
impl RefUnwindSafe for WaveResult
impl Send for WaveResult
impl Sync for WaveResult
impl Unpin for WaveResult
impl UnsafeUnpin for WaveResult
impl UnwindSafe for WaveResult
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