Struct egui::load::SizedTexture
source · pub struct SizedTexture {
pub id: TextureId,
pub size: Vec2,
}
Expand description
A texture with a known size.
Fields§
§id: TextureId
§size: Vec2
Implementations§
source§impl SizedTexture
impl SizedTexture
sourcepub fn new(id: impl Into<TextureId>, size: impl Into<Vec2>) -> Self
pub fn new(id: impl Into<TextureId>, size: impl Into<Vec2>) -> Self
Create a SizedTexture
from a texture id
with a specific size
.
sourcepub fn from_handle(handle: &TextureHandle) -> Self
pub fn from_handle(handle: &TextureHandle) -> Self
Fetch the id and size from a TextureHandle
.
Trait Implementations§
source§impl Clone for SizedTexture
impl Clone for SizedTexture
source§fn clone(&self) -> SizedTexture
fn clone(&self) -> SizedTexture
Returns a copy 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 SizedTexture
impl Debug for SizedTexture
source§impl<'a> From<&'a TextureHandle> for SizedTexture
impl<'a> From<&'a TextureHandle> for SizedTexture
source§fn from(handle: &'a TextureHandle) -> Self
fn from(handle: &'a TextureHandle) -> Self
Converts to this type from the input type.
source§impl PartialEq for SizedTexture
impl PartialEq for SizedTexture
source§fn eq(&self, other: &SizedTexture) -> bool
fn eq(&self, other: &SizedTexture) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SizedTexture
impl Eq for SizedTexture
impl StructuralEq for SizedTexture
impl StructuralPartialEq for SizedTexture
Auto Trait Implementations§
impl RefUnwindSafe for SizedTexture
impl Send for SizedTexture
impl Sync for SizedTexture
impl Unpin for SizedTexture
impl UnwindSafe for SizedTexture
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