pub struct PipelineGraphSystem {
pub system: System,
pub reads: HashSet<TypeId>,
pub writes: HashSet<TypeId>,
pub layer: PipelineLayer,
pub lock_on_single_thread: bool,
}
Fields§
§system: System
§reads: HashSet<TypeId>
§writes: HashSet<TypeId>
§layer: PipelineLayer
§lock_on_single_thread: bool
Trait Implementations§
Source§impl Clone for PipelineGraphSystem
impl Clone for PipelineGraphSystem
Source§fn clone(&self) -> PipelineGraphSystem
fn clone(&self) -> PipelineGraphSystem
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 moreSource§impl Debug for PipelineGraphSystem
impl Debug for PipelineGraphSystem
Source§impl PartialEq for PipelineGraphSystem
impl PartialEq for PipelineGraphSystem
Auto Trait Implementations§
impl Freeze for PipelineGraphSystem
impl RefUnwindSafe for PipelineGraphSystem
impl Send for PipelineGraphSystem
impl Sync for PipelineGraphSystem
impl Unpin for PipelineGraphSystem
impl UnwindSafe for PipelineGraphSystem
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