Struct postgis::MultiPoint [] [src]

pub struct MultiPoint<P> {
    pub points: Vec<P>,
}

Fields

Methods

impl<P: ToPoint> MultiPoint<P>
[src]

Trait Implementations

impl<P: Debug> Debug for MultiPoint<P>
[src]

Formats the value using the given formatter.

impl<P: ToPoint> FromIterator<P> for MultiPoint<P>
[src]

Creates a value from an iterator. Read more

impl<P: ToPoint + Debug> ToSql for MultiPoint<P>
[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<P: ToPoint + Debug> FromSql for MultiPoint<P>
[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<P: ToPoint> Display for MultiPoint<P>
[src]

Formats the value using the given formatter.