Struct postgis::PointM [] [src]

pub struct PointM<S: SRID = WGS84> {
    pub x: f64,
    pub y: f64,
    pub m: f64,
    // some fields omitted
}

Fields

Methods

impl<S: SRID> PointM<S>
[src]

Trait Implementations

impl<S: Clone + SRID> Clone for PointM<S>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<S: Copy + SRID> Copy for PointM<S>
[src]

impl<S: SRID> FromSql for PointM<S>
[src]

Determines if a value of this type can be created from the specified Postgres Type. Read more

Creates a new value of this type from a Reader of the binary format of the specified Postgres Type. Read more

Creates a new value of this type from a NULL SQL value. Read more

impl<S: SRID> ToSql for PointM<S>
[src]

An adaptor method used internally by Rust-Postgres. Read more

Determines if a value of this type can be converted to the specified Postgres Type. Read more

Converts the value of self into the binary format of the specified Postgres Type, writing it to out. Read more

impl<S: SRID> Display for PointM<S>
[src]

Formats the value using the given formatter.

impl<S: SRID> Debug for PointM<S>
[src]

Formats the value using the given formatter.