[][src]Struct rust_3d::Ray3D

pub struct Ray3D {
    pub line: Line3D,
}

Ray3D, a ray within 3D space

Fields

line: Line3D

Methods

impl Ray3D[src]

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

Creates a new Ray3D from a Line3D

Trait Implementations

impl Clone for Ray3D[src]

impl Debug for Ray3D[src]

impl Display for Ray3D[src]

impl Eq for Ray3D[src]

impl Hash for Ray3D[src]

impl IsMovable3D for Ray3D[src]

impl Ord for Ray3D[src]

impl PartialEq<Ray3D> for Ray3D[src]

impl PartialOrd<Ray3D> for Ray3D[src]

impl StructuralEq for Ray3D[src]

impl StructuralPartialEq for Ray3D[src]

Auto Trait Implementations

impl RefUnwindSafe for Ray3D

impl Send for Ray3D

impl Sync for Ray3D

impl Unpin for Ray3D

impl UnwindSafe for Ray3D

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.