pub struct DropSpatialReferenceSystemStatement {
pub if_exists: bool,
pub srid: u32,
}
Expand description
parse DROP SPATIAL REFERENCE SYSTEM [IF EXISTS] srid
srid: 32-bit unsigned integer
Fields§
§if_exists: bool
§srid: u32
Implementations§
Source§impl DropSpatialReferenceSystemStatement
impl DropSpatialReferenceSystemStatement
pub fn parse( i: &str, ) -> IResult<&str, DropSpatialReferenceSystemStatement, ParseSQLError<&str>>
Trait Implementations§
Source§impl Clone for DropSpatialReferenceSystemStatement
impl Clone for DropSpatialReferenceSystemStatement
Source§fn clone(&self) -> DropSpatialReferenceSystemStatement
fn clone(&self) -> DropSpatialReferenceSystemStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for DropSpatialReferenceSystemStatement
impl<'de> Deserialize<'de> for DropSpatialReferenceSystemStatement
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 PartialEq for DropSpatialReferenceSystemStatement
impl PartialEq for DropSpatialReferenceSystemStatement
Source§fn eq(&self, other: &DropSpatialReferenceSystemStatement) -> bool
fn eq(&self, other: &DropSpatialReferenceSystemStatement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for DropSpatialReferenceSystemStatement
impl StructuralPartialEq for DropSpatialReferenceSystemStatement
Auto Trait Implementations§
impl Freeze for DropSpatialReferenceSystemStatement
impl RefUnwindSafe for DropSpatialReferenceSystemStatement
impl Send for DropSpatialReferenceSystemStatement
impl Sync for DropSpatialReferenceSystemStatement
impl Unpin for DropSpatialReferenceSystemStatement
impl UnwindSafe for DropSpatialReferenceSystemStatement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more