pub struct DynamicSubmitSystem<T: SubmitSystem> { /* private fields */ }Implementations§
Source§impl<T: SubmitSystem> DynamicSubmitSystem<T>
impl<T: SubmitSystem> DynamicSubmitSystem<T>
Trait Implementations§
Source§impl<T: SubmitSystem> SubmitSystemCont for DynamicSubmitSystem<T>
impl<T: SubmitSystem> SubmitSystemCont for DynamicSubmitSystem<T>
fn setup( &mut self, graphics_objects: Arc<GraphicsObjects>, ) -> Result<(T::SharedType, Box<CmdBuffer>), HaltPolicy>
fn submit( &mut self, graphics_objects: Arc<GraphicsObjects>, cmd_buffer: Box<CmdBuffer>, )
Auto Trait Implementations§
impl<T> Freeze for DynamicSubmitSystem<T>
impl<T> RefUnwindSafe for DynamicSubmitSystem<T>
impl<T> Send for DynamicSubmitSystem<T>
impl<T> Sync for DynamicSubmitSystem<T>
impl<T> Unpin for DynamicSubmitSystem<T>
impl<T> UnwindSafe for DynamicSubmitSystem<T>
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