pub enum TextureCreationResult {
Ok(Texture),
TextureCreationError(TextureCreationError),
ImageCreationError(ImageError),
}Expand description
Результат создания текстуры. The result of texture creation.
Variants§
Implementations§
Auto Trait Implementations§
impl !Freeze for TextureCreationResult
impl !RefUnwindSafe for TextureCreationResult
impl !Send for TextureCreationResult
impl !Sync for TextureCreationResult
impl Unpin for TextureCreationResult
impl UnsafeUnpin for TextureCreationResult
impl !UnwindSafe for TextureCreationResult
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