pub struct Chains {
pub schedule: Schedule<Unsynchronized>,
pub buffers: HashMap<Id, Chain<Buffer>>,
pub images: HashMap<Id, Chain<Image>>,
}
Expand description
Result of node scheduler.
Fields§
§schedule: Schedule<Unsynchronized>
Contains submissions for nodes spread among queue schedule.
buffers: HashMap<Id, Chain<Buffer>>
Contains all buffer chains.
images: HashMap<Id, Chain<Image>>
Contains all image chains.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Chains
impl RefUnwindSafe for Chains
impl Send for Chains
impl Sync for Chains
impl Unpin for Chains
impl UnwindSafe for Chains
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