pub struct PlacedItem {
pub item_id: usize,
pub d_transf: DTransformation,
pub hazard_filter: Option<QZHazardFilter>,
pub shape: Arc<SimplePolygon>,
}
Expand description
Represents an Item
that has been placed in a Layout
Fields§
§item_id: usize
ID of the type of Item
that was placed
d_transf: DTransformation
The transformation that was applied to the Item
before it was placed
hazard_filter: Option<QZHazardFilter>
The filter for hazards that the Item
is unaffected by
shape: Arc<SimplePolygon>
The shape of the Item
after it has been transformed and placed in a Layout
Implementations§
Source§impl PlacedItem
impl PlacedItem
pub fn new(item: &Item, d_transf: DTransformation) -> Self
Trait Implementations§
Source§impl Clone for PlacedItem
impl Clone for PlacedItem
Source§fn clone(&self) -> PlacedItem
fn clone(&self) -> PlacedItem
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 PlacedItem
impl RefUnwindSafe for PlacedItem
impl Send for PlacedItem
impl Sync for PlacedItem
impl Unpin for PlacedItem
impl UnwindSafe for PlacedItem
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