pub struct PgPoint {
pub x: f64,
pub y: f64,
}Expand description
PostgreSQL POINT type – 16 bytes (2 x f64).
Fields§
§x: f64§y: f64Trait Implementations§
Source§impl ToSql for PgPoint
impl ToSql for PgPoint
impl Copy for PgPoint
impl StructuralPartialEq for PgPoint
Auto Trait Implementations§
impl Freeze for PgPoint
impl RefUnwindSafe for PgPoint
impl Send for PgPoint
impl Sync for PgPoint
impl Unpin for PgPoint
impl UnsafeUnpin for PgPoint
impl UnwindSafe for PgPoint
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