Struct webrender::space::SpaceSnapper
source · pub struct SpaceSnapper {
ref_spatial_node_index: SpatialNodeIndex,
current_target_spatial_node_index: SpatialNodeIndex,
snapping_transform: Option<ScaleOffset>,
raster_pixel_scale: RasterPixelScale,
}
Fields§
§ref_spatial_node_index: SpatialNodeIndex
§current_target_spatial_node_index: SpatialNodeIndex
§snapping_transform: Option<ScaleOffset>
§raster_pixel_scale: RasterPixelScale
Implementations§
source§impl SpaceSnapper
impl SpaceSnapper
pub fn new( ref_spatial_node_index: SpatialNodeIndex, raster_pixel_scale: RasterPixelScale, ) -> Self
pub fn new_with_target<S: SpatialNodeContainer>( ref_spatial_node_index: SpatialNodeIndex, target_node_index: SpatialNodeIndex, raster_pixel_scale: RasterPixelScale, spatial_tree: &S, ) -> Self
pub fn set_target_spatial_node<S: SpatialNodeContainer>( &mut self, target_node_index: SpatialNodeIndex, spatial_tree: &S, )
pub fn snap_rect<F>(&self, rect: &Box2D<f32, F>) -> Box2D<f32, F>where
F: Debug,
pub fn snap_point<F>(&self, point: &Point2D<f32, F>) -> Point2D<f32, F>where
F: Debug,
Trait Implementations§
source§impl Clone for SpaceSnapper
impl Clone for SpaceSnapper
source§fn clone(&self) -> SpaceSnapper
fn clone(&self) -> SpaceSnapper
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 moreAuto Trait Implementations§
impl Freeze for SpaceSnapper
impl RefUnwindSafe for SpaceSnapper
impl Send for SpaceSnapper
impl Sync for SpaceSnapper
impl Unpin for SpaceSnapper
impl UnwindSafe for SpaceSnapper
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