pub enum TextureId {
Managed(u64),
User(u64),
}
Expand description
Variants§
Managed(u64)
Textures allocated using TextureManager
.
The first texture (TextureId::Managed(0)
) is used for the font data.
User(u64)
Your own texture, defined in any which way you want. The backend renderer will presumably use this to look up what texture to use.
Trait Implementations§
source§impl From<&TextureHandle> for TextureId
impl From<&TextureHandle> for TextureId
source§fn from(handle: &TextureHandle) -> Self
fn from(handle: &TextureHandle) -> Self
Converts to this type from the input type.
source§impl From<&mut TextureHandle> for TextureId
impl From<&mut TextureHandle> for TextureId
source§fn from(handle: &mut TextureHandle) -> Self
fn from(handle: &mut TextureHandle) -> Self
Converts to this type from the input type.
source§impl Ord for TextureId
impl Ord for TextureId
source§impl PartialEq for TextureId
impl PartialEq for TextureId
source§impl PartialOrd for TextureId
impl PartialOrd for TextureId
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for TextureId
impl Eq for TextureId
impl StructuralEq for TextureId
impl StructuralPartialEq for TextureId
Auto Trait Implementations§
impl RefUnwindSafe for TextureId
impl Send for TextureId
impl Sync for TextureId
impl Unpin for TextureId
impl UnwindSafe for TextureId
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