[][src]Struct euclid::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 + PartialOrd + Add<T, Output = T> + Sub<T, Output = T>, 
[src]

pub fn union(&self, other: &Self) -> Self[src]

pub fn contains_rect(&self, rect: &Self) -> bool[src]

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

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

pub fn union(&self, other: &Self) -> Self[src]

pub fn contains_box(&self, other: &Self) -> 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>) -> Self[src]

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

pub fn union(&self, other: &Self) -> Self[src]

pub fn contains_box(&self, other: &Self) -> 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>) -> Self[src]

Trait Implementations

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

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

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

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

type Target = T

The resulting type after dereferencing.

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

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

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

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

impl<T> StructuralPartialEq for NonEmpty<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.