pub struct RawRenderPassID {
pub index: usize,
}Expand description
Not RAII. Manual deletion of render_pass is required using RenderBackend::delete_render_pass.
Fields§
§index: usizeTrait Implementations§
Source§impl Clone for RawRenderPassID
impl Clone for RawRenderPassID
Source§fn clone(&self) -> RawRenderPassID
fn clone(&self) -> RawRenderPassID
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RawRenderPassID
Source§impl Debug for RawRenderPassID
impl Debug for RawRenderPassID
Source§impl Default for RawRenderPassID
impl Default for RawRenderPassID
Source§fn default() -> RawRenderPassID
fn default() -> RawRenderPassID
Returns the “default value” for a type. Read more
impl Eq for RawRenderPassID
Source§impl Hash for RawRenderPassID
impl Hash for RawRenderPassID
Source§impl Ord for RawRenderPassID
impl Ord for RawRenderPassID
Source§fn cmp(&self, other: &RawRenderPassID) -> Ordering
fn cmp(&self, other: &RawRenderPassID) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RawRenderPassID
impl PartialEq for RawRenderPassID
Source§fn eq(&self, other: &RawRenderPassID) -> bool
fn eq(&self, other: &RawRenderPassID) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RawRenderPassID
impl PartialOrd for RawRenderPassID
impl StructuralPartialEq for RawRenderPassID
Auto Trait Implementations§
impl Freeze for RawRenderPassID
impl RefUnwindSafe for RawRenderPassID
impl Send for RawRenderPassID
impl Sync for RawRenderPassID
impl Unpin for RawRenderPassID
impl UnsafeUnpin for RawRenderPassID
impl UnwindSafe for RawRenderPassID
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<Src, Dest> CastRangeFrom<Dest> for Srcwhere
Dest: CastRangeInto<Src>,
impl<Src, Dest> CastRangeFrom<Dest> for Srcwhere
Dest: CastRangeInto<Src>,
fn cast_range_from(value: Dest) -> Src
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DefaultExtension for T
impl<T> DefaultExtension for T
fn is_default(&self) -> bool
fn is_not_default(&self) -> bool
Source§impl<T> DefaultIsTripleUnderscore for Twhere
T: Default,
impl<T> DefaultIsTripleUnderscore for Twhere
T: Default,
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