Struct postgis_diesel::types::MultiPolygon

source ·
pub struct MultiPolygon<T> {
    pub polygons: Vec<Polygon<T>>,
    pub srid: Option<u32>,
}
Expand description

Use that structure in Insertable or Queryable struct if you work with MultiPolygon geometry.

#[macro_use] extern crate diesel;
use postgis_diesel::types::{MultiPolygon, Polygon,Point};
#[derive(Queryable)]
struct QueryableMultiPolygonExample {
    id: i32,
    multipolygon: MultiPolygon<Polygon<Point>>,
}

Fields§

§polygons: Vec<Polygon<T>>§srid: Option<u32>

Implementations§

source§

impl<T> MultiPolygon<T>
where T: PointT + Clone,

source

pub fn new(srid: Option<u32>) -> Self

source

pub fn with_capacity(srid: Option<u32>, cap: usize) -> Self

source

pub fn add_empty_polygon<'a>(&'a mut self) -> &mut Self

source

pub fn add_empty_polygon_with_capacity<'a>( &'a mut self, cap: usize, ) -> &mut Self

source

pub fn add_point<'a>(&'a mut self, point: T) -> &mut Self

source

pub fn add_points<'a>( &'a mut self, points: impl IntoIterator<Item = T>, ) -> &mut Self

source

pub fn dimension(&self) -> u32

Trait Implementations§

source§

impl<'expr, T> AsExpression<Geography> for &'expr MultiPolygon<T>

§

type Expression = Bound<Geography, &'expr MultiPolygon<T>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<T> AsExpression<Geography> for MultiPolygon<T>

§

type Expression = Bound<Geography, MultiPolygon<T>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'expr, T> AsExpression<Geometry> for &'expr MultiPolygon<T>

§

type Expression = Bound<Geometry, &'expr MultiPolygon<T>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<T> AsExpression<Geometry> for MultiPolygon<T>

§

type Expression = Bound<Geometry, MultiPolygon<T>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'expr, T> AsExpression<Nullable<Geography>> for &'expr MultiPolygon<T>

§

type Expression = Bound<Nullable<Geography>, &'expr MultiPolygon<T>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<T> AsExpression<Nullable<Geography>> for MultiPolygon<T>

§

type Expression = Bound<Nullable<Geography>, MultiPolygon<T>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'expr, T> AsExpression<Nullable<Geometry>> for &'expr MultiPolygon<T>

§

type Expression = Bound<Nullable<Geometry>, &'expr MultiPolygon<T>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<T> AsExpression<Nullable<Geometry>> for MultiPolygon<T>

§

type Expression = Bound<Nullable<Geometry>, MultiPolygon<T>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<T: Clone> Clone for MultiPolygon<T>

source§

fn clone(&self) -> MultiPolygon<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for MultiPolygon<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, T> Deserialize<'de> for MultiPolygon<T>
where T: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T> FromSql<Geography, Pg> for MultiPolygon<T>
where T: PointT + Debug + Clone,

source§

fn from_sql(bytes: PgValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql( bytes: Option<<DB as HasRawValue<'_>>::RawValue>, ) -> Result<Self, Box<dyn Error + Send + Sync>>

A specialized variant of from_sql for handling null values. Read more
source§

impl<T> FromSql<Geometry, Pg> for MultiPolygon<T>
where T: PointT + Debug + Clone,

source§

fn from_sql(bytes: PgValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql( bytes: Option<<DB as HasRawValue<'_>>::RawValue>, ) -> Result<Self, Box<dyn Error + Send + Sync>>

A specialized variant of from_sql for handling null values. Read more
source§

impl<T: PartialEq> PartialEq for MultiPolygon<T>

source§

fn eq(&self, other: &MultiPolygon<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<__ST, __DB, T> Queryable<__ST, __DB> for MultiPolygon<T>
where __DB: Backend, __ST: SingleValue, Self: FromSql<__ST, __DB>,

§

type Row = MultiPolygon<T>

The Rust type you’d like to map from. Read more
source§

fn build(row: Self::Row) -> Result<Self>

Construct an instance of this type
source§

impl<T> Serialize for MultiPolygon<T>
where T: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T> ToSql<Geography, Pg> for MultiPolygon<T>
where T: PointT + Debug + PartialEq + Clone + EwkbSerializable,

source§

fn to_sql(&self, out: &mut Output<'_, '_, Pg>) -> Result

See the trait documentation.
source§

impl<T> ToSql<Geometry, Pg> for MultiPolygon<T>
where T: PointT + Debug + PartialEq + Clone + EwkbSerializable,

source§

fn to_sql(&self, out: &mut Output<'_, '_, Pg>) -> Result

See the trait documentation.
source§

impl<T, __DB> ToSql<Nullable<Geography>, __DB> for MultiPolygon<T>
where __DB: Backend, Self: ToSql<Geography, __DB>,

source§

fn to_sql<'__b>(&'__b self, out: &mut Output<'__b, '_, __DB>) -> Result

See the trait documentation.
source§

impl<T, __DB> ToSql<Nullable<Geometry>, __DB> for MultiPolygon<T>
where __DB: Backend, Self: ToSql<Geometry, __DB>,

source§

fn to_sql<'__b>(&'__b self, out: &mut Output<'__b, '_, __DB>) -> Result

See the trait documentation.
source§

impl<T> StructuralPartialEq for MultiPolygon<T>

Auto Trait Implementations§

§

impl<T> Freeze for MultiPolygon<T>

§

impl<T> RefUnwindSafe for MultiPolygon<T>
where T: RefUnwindSafe,

§

impl<T> Send for MultiPolygon<T>
where T: Send,

§

impl<T> Sync for MultiPolygon<T>
where T: Sync,

§

impl<T> Unpin for MultiPolygon<T>
where T: Unpin,

§

impl<T> UnwindSafe for MultiPolygon<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, ST, DB> FromSqlRow<ST, DB> for T
where T: Queryable<ST, DB>, ST: SqlTypeOrSelectable, DB: Backend, <T as Queryable<ST, DB>>::Row: FromStaticSqlRow<ST, DB>,

source§

fn build_from_row<'a>( row: &impl Row<'a, DB>, ) -> Result<T, Box<dyn Error + Send + Sync>>

See the trait documentation.
source§

impl<T, ST, DB> FromStaticSqlRow<ST, DB> for T
where DB: Backend, T: FromSql<ST, DB>, ST: SingleValue,

source§

fn build_from_row<'a>( row: &impl Row<'a, DB>, ) -> Result<T, Box<dyn Error + Send + Sync>>

See the trait documentation
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> Self::Expression

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T, ST, DB> StaticallySizedRow<ST, DB> for T
where ST: SqlTypeOrSelectable + TupleSize, T: Queryable<ST, DB>, DB: Backend,

source§

const FIELD_COUNT: usize = <ST as crate::util::TupleSize>::SIZE

The number of fields that this type will consume.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,