Struct cut_optimizer_2d::ResultStockPiece[][src]

pub struct ResultStockPiece {
    pub width: usize,
    pub length: usize,
    pub pattern_direction: PatternDirection,
    pub cut_pieces: Vec<ResultCutPiece>,
    pub waste_pieces: Vec<Rect>,
}

Stock piece that was used by the optimizer to get one or more cut pieces.

Fields

width: usize

Width of this stock piece.

length: usize

Length of this stock piece.

pattern_direction: PatternDirection

Pattern direction of this stock piece.

cut_pieces: Vec<ResultCutPiece>

Cut pieces to cut from this stock piece.

waste_pieces: Vec<Rect>

Waste pieces that remain after cutting the cut pieces.

Trait Implementations

impl Clone for ResultStockPiece[src]

impl Debug for ResultStockPiece[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,