Struct postgis::ewkb::PointM[][src]

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

Fields

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

Implementations

impl PointM[src]

pub fn has_z() -> bool[src]

pub fn has_m() -> bool[src]

pub fn new(x: f64, y: 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 PointM[src]

impl Clone for PointM[src]

impl Copy for PointM[src]

impl Debug for PointM[src]

impl EwkbRead for PointM[src]

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

impl PartialEq<PointM> for PointM[src]

impl Point for PointM[src]

impl StructuralPartialEq for PointM[src]

impl ToSql for PointM[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>,