pub struct RenderTaskId {
    pub index: u32,
}Fields§
§index: u32Implementations§
Source§impl RenderTaskId
 
impl RenderTaskId
pub const INVALID: RenderTaskId
Trait Implementations§
Source§impl Clone for RenderTaskId
 
impl Clone for RenderTaskId
Source§fn clone(&self) -> RenderTaskId
 
fn clone(&self) -> RenderTaskId
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 RenderTaskId
 
impl Debug for RenderTaskId
Source§impl Hash for RenderTaskId
 
impl Hash for RenderTaskId
Source§impl Index<RenderTaskId> for RenderTaskGraph
Batching uses index access to read information about tasks
 
impl Index<RenderTaskId> for RenderTaskGraph
Batching uses index access to read information about tasks
Source§type Output = RenderTask
 
type Output = RenderTask
The returned type after indexing.
Source§fn index(&self, id: RenderTaskId) -> &RenderTask
 
fn index(&self, id: RenderTaskId) -> &RenderTask
Performs the indexing (
container[index]) operation. Read moreSource§impl Into<RenderTaskAddress> for RenderTaskId
 
impl Into<RenderTaskAddress> for RenderTaskId
Source§fn into(self) -> RenderTaskAddress
 
fn into(self) -> RenderTaskAddress
Converts this type into the (usually inferred) input type.
Source§impl MallocSizeOf for RenderTaskId
 
impl MallocSizeOf for RenderTaskId
Source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
 
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
Source§impl PartialEq for RenderTaskId
 
impl PartialEq for RenderTaskId
Source§impl Serialize for RenderTaskId
 
impl Serialize for RenderTaskId
impl Copy for RenderTaskId
impl Eq for RenderTaskId
impl StructuralPartialEq for RenderTaskId
Auto Trait Implementations§
impl Freeze for RenderTaskId
impl RefUnwindSafe for RenderTaskId
impl Send for RenderTaskId
impl Sync for RenderTaskId
impl Unpin for RenderTaskId
impl UnwindSafe for RenderTaskId
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§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more