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
impl Copy for SizedTexture
impl Eq for SizedTexture
impl StructuralPartialEq for SizedTexture
Auto Trait Implementations§
impl Freeze for SizedTexture
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)