Struct postgis::PointZ [] [src]

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

Fields

Methods

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

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl<S: SRID> FromSql for PointZ<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 PointZ<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 PointZ<S>
[src]

Formats the value using the given formatter.

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

Formats the value using the given formatter.