Struct postgis::ewkb::PointZM[][src]

pub struct PointZM {
    pub x: f64,
    pub y: f64,
    pub z: f64,
    pub m: f64,
    pub srid: Option<i32>,
}

Fields

x: f64y: f64z: f64m: f64srid: Option<i32>

Implementations

impl PointZM[src]

pub fn has_z() -> bool[src]

pub fn has_m() -> bool[src]

pub fn new(x: f64, y: f64, z: f64, m: f64, srid: Option<i32>) -> Self[src]

pub fn new_from_opt_vals(
    x: f64,
    y: f64,
    z: Option<f64>,
    m: Option<f64>,
    srid: Option<i32>
) -> Self
[src]

Trait Implementations

impl<'a> AsEwkbPoint<'a> for PointZM[src]

impl Clone for PointZM[src]

impl Copy for PointZM[src]

impl Debug for PointZM[src]

impl EwkbRead for PointZM[src]

impl<'a> FromSql<'a> for PointZM[src]

impl PartialEq<PointZM> for PointZM[src]

impl Point for PointZM[src]

impl StructuralPartialEq for PointZM[src]

impl ToSql for PointZM[src]

Auto Trait Implementations

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> BorrowToSql for T where
    T: ToSql
[src]

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

impl<T> FromSqlOwned for T where
    T: for<'a> FromSql<'a>, 
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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