Struct webrender::internal_types::PlaneSplitAnchor
source · pub struct PlaneSplitAnchor {
pub spatial_node_index: SpatialNodeIndex,
pub instance_index: PrimitiveInstanceIndex,
}
Expand description
Custom field embedded inside the Polygon struct of the plane-split crate.
Fields§
§spatial_node_index: SpatialNodeIndex
§instance_index: PrimitiveInstanceIndex
Implementations§
source§impl PlaneSplitAnchor
impl PlaneSplitAnchor
pub fn new( spatial_node_index: SpatialNodeIndex, instance_index: PrimitiveInstanceIndex, ) -> Self
Trait Implementations§
source§impl Clone for PlaneSplitAnchor
impl Clone for PlaneSplitAnchor
source§fn clone(&self) -> PlaneSplitAnchor
fn clone(&self) -> PlaneSplitAnchor
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 PlaneSplitAnchor
impl Debug for PlaneSplitAnchor
source§impl Default for PlaneSplitAnchor
impl Default for PlaneSplitAnchor
source§impl Serialize for PlaneSplitAnchor
impl Serialize for PlaneSplitAnchor
impl Copy for PlaneSplitAnchor
Auto Trait Implementations§
impl Freeze for PlaneSplitAnchor
impl RefUnwindSafe for PlaneSplitAnchor
impl Send for PlaneSplitAnchor
impl Sync for PlaneSplitAnchor
impl Unpin for PlaneSplitAnchor
impl UnwindSafe for PlaneSplitAnchor
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