pub struct TextureLocation {
pub page: TexturePageId,
pub rect: RectI,
}Fields§
§page: TexturePageId§rect: RectITrait Implementations§
Source§impl Clone for TextureLocation
impl Clone for TextureLocation
Source§fn clone(&self) -> TextureLocation
fn clone(&self) -> TextureLocation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TextureLocation
Source§impl Debug for TextureLocation
impl Debug for TextureLocation
Source§impl Default for TextureLocation
impl Default for TextureLocation
Source§fn default() -> TextureLocation
fn default() -> TextureLocation
Returns the “default value” for a type. Read more
Source§impl PartialEq for TextureLocation
impl PartialEq for TextureLocation
Source§fn eq(&self, other: &TextureLocation) -> bool
fn eq(&self, other: &TextureLocation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TextureLocation
Auto Trait Implementations§
impl Freeze for TextureLocation
impl RefUnwindSafe for TextureLocation
impl Send for TextureLocation
impl Sync for TextureLocation
impl Unpin for TextureLocation
impl UnsafeUnpin for TextureLocation
impl UnwindSafe for TextureLocation
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more