Struct diesel_mysql_spatial::sql_types::MultiLineString
source · [−]pub struct MultiLineString;Expand description
The MySQL MULTILINESTRING type.
Trait Implementations
sourceimpl Clone for MultiLineString
impl Clone for MultiLineString
sourcefn clone(&self) -> MultiLineString
fn clone(&self) -> MultiLineString
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 MultiLineString
impl Debug for MultiLineString
sourceimpl Default for MultiLineString
impl Default for MultiLineString
sourcefn default() -> MultiLineString
fn default() -> MultiLineString
Returns the “default value” for a type. Read more
sourceimpl From<MultiLineString> for Geometry
impl From<MultiLineString> for Geometry
sourcefn from(_: MultiLineString) -> Geometry
fn from(_: MultiLineString) -> Geometry
Converts to this type from the input type.
sourceimpl FromSql<MultiLineString, Mysql> for MultiLineString
impl FromSql<MultiLineString, Mysql> for MultiLineString
sourceimpl FromSql<MultiLineString, Mysql> for Geometry
impl FromSql<MultiLineString, Mysql> for Geometry
sourceimpl FromSql<MultiLineString, Mysql> for MultiLineString<f64>
impl FromSql<MultiLineString, Mysql> for MultiLineString<f64>
sourceimpl HasSqlType<MultiLineString> for Mysql
impl HasSqlType<MultiLineString> for Mysql
sourceimpl QueryId for MultiLineString
impl QueryId for MultiLineString
type QueryId = MultiLineString
type QueryId = MultiLineString
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<MultiLineString, Mysql> for MultiLineString
impl ToSql<MultiLineString, Mysql> for MultiLineString
sourceimpl ToSql<MultiLineString, Mysql> for MultiLineString<f64>
impl ToSql<MultiLineString, Mysql> for MultiLineString<f64>
impl Copy for MultiLineString
impl NotNull for MultiLineString
impl SingleValue for MultiLineString
Auto Trait Implementations
impl RefUnwindSafe for MultiLineString
impl Send for MultiLineString
impl Sync for MultiLineString
impl Unpin for MultiLineString
impl UnwindSafe for MultiLineString
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