[][src]Struct klondike_lib::display::geometry::NonEmpty

pub struct NonEmpty<T>(_);

Implementations

impl<T> NonEmpty<T>[src]

pub fn get(&self) -> &T[src]

impl<T, U> NonEmpty<Rect<T, U>> where
    T: Copy + Clone + Zero + PartialOrd<T> + PartialEq<T> + Add<T, Output = T> + Sub<T, Output = T>, 
[src]

pub fn union(&self, other: &NonEmpty<Rect<T, U>>) -> NonEmpty<Rect<T, U>>[src]

pub fn contains_rect(&self, rect: &NonEmpty<Rect<T, U>>) -> bool[src]

pub fn translate(&self, by: Vector2D<T, U>) -> NonEmpty<Rect<T, U>>[src]

impl<T, U> NonEmpty<Box2D<T, U>> where
    T: Copy + PartialOrd<T>, 
[src]

pub fn union(&self, other: &NonEmpty<Box2D<T, U>>) -> NonEmpty<Box2D<T, U>>[src]

pub fn contains_box(&self, other: &NonEmpty<Box2D<T, U>>) -> bool[src]

Returns true if this box contains the interior of the other box.

impl<T, U> NonEmpty<Box2D<T, U>> where
    T: Copy + Add<T, Output = T>, 
[src]

pub fn translate(&self, by: Vector2D<T, U>) -> NonEmpty<Box2D<T, U>>[src]

impl<T, U> NonEmpty<Box3D<T, U>> where
    T: Copy + PartialOrd<T>, 
[src]

pub fn union(&self, other: &NonEmpty<Box3D<T, U>>) -> NonEmpty<Box3D<T, U>>[src]

pub fn contains_box(&self, other: &NonEmpty<Box3D<T, U>>) -> bool[src]

Returns true if this box contains the interior of the other box.

impl<T, U> NonEmpty<Box3D<T, U>> where
    T: Copy + Add<T, Output = T>, 
[src]

pub fn translate(&self, by: Vector3D<T, U>) -> NonEmpty<Box3D<T, U>>[src]

Trait Implementations

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

impl<T> Copy for NonEmpty<T> where
    T: Copy
[src]

impl<T> Debug for NonEmpty<T> where
    T: Debug
[src]

impl<T> Deref for NonEmpty<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> Eq for NonEmpty<T> where
    T: Eq
[src]

impl<T> Hash for NonEmpty<T> where
    T: Hash
[src]

impl<T> PartialEq<NonEmpty<T>> for NonEmpty<T> where
    T: PartialEq<T>, 
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for NonEmpty<T> where
    T: RefUnwindSafe

impl<T> Send for NonEmpty<T> where
    T: Send

impl<T> Sync for NonEmpty<T> where
    T: Sync

impl<T> Unpin for NonEmpty<T> where
    T: Unpin

impl<T> UnwindSafe for NonEmpty<T> where
    T: UnwindSafe

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>,