Struct diesel_mysql_spatial::sql_types::GeometryCollection
source · [−]pub struct GeometryCollection;Expand description
The MySQL GEOMETRYCOLLECTION type.
Trait Implementations
sourceimpl Clone for GeometryCollection
impl Clone for GeometryCollection
sourcefn clone(&self) -> GeometryCollection
fn clone(&self) -> GeometryCollection
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for GeometryCollection
impl Debug for GeometryCollection
sourceimpl Default for GeometryCollection
impl Default for GeometryCollection
sourcefn default() -> GeometryCollection
fn default() -> GeometryCollection
Returns the “default value” for a type. Read more
sourceimpl From<GeometryCollection> for Geometry
impl From<GeometryCollection> for Geometry
sourcefn from(_: GeometryCollection) -> Geometry
fn from(_: GeometryCollection) -> Geometry
Converts to this type from the input type.
sourceimpl FromSql<GeometryCollection, Mysql> for GeometryCollection
impl FromSql<GeometryCollection, Mysql> for GeometryCollection
sourceimpl FromSql<GeometryCollection, Mysql> for Geometry
impl FromSql<GeometryCollection, Mysql> for Geometry
sourceimpl FromSql<GeometryCollection, Mysql> for GeometryCollection<f64>
impl FromSql<GeometryCollection, Mysql> for GeometryCollection<f64>
sourceimpl HasSqlType<GeometryCollection> for Mysql
impl HasSqlType<GeometryCollection> for Mysql
sourceimpl QueryId for GeometryCollection
impl QueryId for GeometryCollection
type QueryId = GeometryCollection
type QueryId = GeometryCollection
A type which uniquely represents Self in a SQL query. Read more
sourceconst HAS_STATIC_QUERY_ID: bool = true
const HAS_STATIC_QUERY_ID: bool = true
Can the SQL generated by Self be uniquely identified by its type? Read more
sourceimpl ToSql<GeometryCollection, Mysql> for GeometryCollection
impl ToSql<GeometryCollection, Mysql> for GeometryCollection
sourceimpl ToSql<GeometryCollection, Mysql> for GeometryCollection<f64>
impl ToSql<GeometryCollection, Mysql> for GeometryCollection<f64>
impl Copy for GeometryCollection
impl NotNull for GeometryCollection
impl SingleValue for GeometryCollection
Auto Trait Implementations
impl RefUnwindSafe for GeometryCollection
impl Send for GeometryCollection
impl Sync for GeometryCollection
impl Unpin for GeometryCollection
impl UnwindSafe for GeometryCollection
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> IntoNullable for T where
T: NotNull,
impl<T> IntoNullable for T where
T: NotNull,
sourceimpl<T> IntoSql for T
impl<T> IntoSql for T
sourcefn into_sql<T>(self) -> Self::Expression where
Self: AsExpression<T>,
fn into_sql<T>(self) -> Self::Expression where
Self: AsExpression<T>,
Convert self to an expression for Diesel’s query builder. Read more
sourcefn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
Convert &self to an expression for Diesel’s query builder. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more