[][src]Struct finiteelement::geometry::Point

#[repr(C)]
pub struct Point<F: Float> {
    pub x: F,
    pub y: F,
    pub z: F,
}

Represents 3D coordinates of the point of a finite element system

Fields

x: F

x coordinate

y: F

y coordinate

z: F

z coordinate

Trait Implementations

impl<F: Clone + Float> Clone for Point<F>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<F: Copy + Float> Copy for Point<F>[src]

impl<F: Debug + Float> Debug for Point<F>[src]

impl<F: Float> Add<Vector<F>> for Point<F>[src]

type Output = Point<F>

The resulting type after applying the + operator.

impl<F: Float> Sub<Point<F>> for Point<F>[src]

type Output = Vector<F>

The resulting type after applying the - operator.

impl<F: Float> AddAssign<Vector<F>> for Point<F>[src]

impl<F: Float> Serialize for Point<F> where
    F: Serialize
[src]

impl<'de, F: Float> Deserialize<'de> for Point<F> where
    F: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<F> Unpin for Point<F> where
    F: Unpin

impl<F> Sync for Point<F> where
    F: Sync

impl<F> Send for Point<F> where
    F: Send

impl<F> RefUnwindSafe for Point<F> where
    F: RefUnwindSafe

impl<F> UnwindSafe for Point<F> where
    F: UnwindSafe

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]