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<'de> Deserialize<'de> for TextureId
impl<'de> Deserialize<'de> for TextureId
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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 PartialOrd for TextureId
impl PartialOrd for TextureId
impl Copy for TextureId
impl Eq for TextureId
impl StructuralPartialEq for TextureId
Auto Trait Implementations§
impl Freeze for TextureId
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