[][src]Struct rust_3d::Ray2D

pub struct Ray2D {
    pub line: Line2D,
}

Ray2D, a ray within 2D space

Fields

line: Line2D

Implementations

impl Ray2D[src]

pub fn new(line: Line2D) -> Self[src]

Creates a new Ray2D from a Line2D

Trait Implementations

impl Clone for Ray2D[src]

impl Debug for Ray2D[src]

impl Display for Ray2D[src]

impl Eq for Ray2D[src]

impl Hash for Ray2D[src]

impl IsMovable2D for Ray2D[src]

impl Ord for Ray2D[src]

impl PartialEq<Ray2D> for Ray2D[src]

impl PartialOrd<Ray2D> for Ray2D[src]

impl StructuralEq for Ray2D[src]

impl StructuralPartialEq for Ray2D[src]

Auto Trait Implementations

impl RefUnwindSafe for Ray2D

impl Send for Ray2D

impl Sync for Ray2D

impl Unpin for Ray2D

impl UnwindSafe for Ray2D

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> ToString for T where
    T: Display + ?Sized
[src]

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.