pub struct Submission<S> { /* private fields */ }
Expand description
This type corresponds to commands that should be recorded into single primary command buffer.
Implementations§
Source§impl<S> Submission<S>
impl<S> Submission<S>
Sourcepub fn id(&self) -> SubmissionId
pub fn id(&self) -> SubmissionId
Get id of the Submission
.
Sourcepub fn wait_factor(&self) -> usize
pub fn wait_factor(&self) -> usize
Get wait factor for Submission
Sourcepub fn submit_order(&self) -> usize
pub fn submit_order(&self) -> usize
Get submit order for Submission
Sourcepub fn buffer_link_index(&self, id: Id) -> usize
pub fn buffer_link_index(&self, id: Id) -> usize
Get link index for resource by id.
Sourcepub fn set_buffer_link(&mut self, id: Id, link: usize)
pub fn set_buffer_link(&mut self, id: Id, link: usize)
Set link index for given chain.
Sourcepub fn image_link_index(&self, id: Id) -> usize
pub fn image_link_index(&self, id: Id) -> usize
Get link index for resource by id.
Sourcepub fn set_image_link(&mut self, id: Id, link: usize)
pub fn set_image_link(&mut self, id: Id, link: usize)
Set link index for given chain.
Sourcepub fn set_sync<T>(&self, sync: T) -> Submission<T>
pub fn set_sync<T>(&self, sync: T) -> Submission<T>
Set synchronization to the Submission
.
Trait Implementations§
Source§impl<S: Clone> Clone for Submission<S>
impl<S: Clone> Clone for Submission<S>
Source§fn clone(&self) -> Submission<S>
fn clone(&self) -> Submission<S>
Returns a copy 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<S> Freeze for Submission<S>where
S: Freeze,
impl<S> RefUnwindSafe for Submission<S>where
S: RefUnwindSafe,
impl<S> Send for Submission<S>where
S: Send,
impl<S> Sync for Submission<S>where
S: Sync,
impl<S> Unpin for Submission<S>where
S: Unpin,
impl<S> UnwindSafe for Submission<S>where
S: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)