Struct webrender::prim_store::VectorKey
source · pub struct VectorKey {
pub x: f32,
pub y: f32,
}
Expand description
A hashable vec for using as a key during primitive interning.
Fields§
§x: f32
§y: f32
Trait Implementations§
source§impl From<Vector2D<f32, LayoutPixel>> for VectorKey
impl From<Vector2D<f32, LayoutPixel>> for VectorKey
source§fn from(vec: LayoutVector2D) -> VectorKey
fn from(vec: LayoutVector2D) -> VectorKey
Converts to this type from the input type.
source§impl From<Vector2D<f32, WorldPixel>> for VectorKey
impl From<Vector2D<f32, WorldPixel>> for VectorKey
source§fn from(vec: WorldVector2D) -> VectorKey
fn from(vec: WorldVector2D) -> VectorKey
Converts to this type from the input type.
source§impl From<VectorKey> for LayoutVector2D
impl From<VectorKey> for LayoutVector2D
source§fn from(key: VectorKey) -> LayoutVector2D
fn from(key: VectorKey) -> LayoutVector2D
Converts to this type from the input type.
source§impl From<VectorKey> for WorldVector2D
impl From<VectorKey> for WorldVector2D
source§fn from(key: VectorKey) -> WorldVector2D
fn from(key: VectorKey) -> WorldVector2D
Converts to this type from the input type.
source§impl MallocSizeOf for VectorKey
impl MallocSizeOf for VectorKey
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
source§impl PartialEq for VectorKey
impl PartialEq for VectorKey
impl Copy for VectorKey
impl Eq for VectorKey
impl StructuralPartialEq for VectorKey
Auto Trait Implementations§
impl Freeze for VectorKey
impl RefUnwindSafe for VectorKey
impl Send for VectorKey
impl Sync for VectorKey
impl Unpin for VectorKey
impl UnwindSafe for VectorKey
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> 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