pub struct PgLSeg {
pub start: PgPoint,
pub end: PgPoint,
}Expand description
PostgreSQL LSEG type – 32 bytes (4 x f64), a line segment.
Fields§
§start: PgPoint§end: PgPointTrait Implementations§
Source§impl ToSql for PgLSeg
impl ToSql for PgLSeg
impl Copy for PgLSeg
impl StructuralPartialEq for PgLSeg
Auto Trait Implementations§
impl Freeze for PgLSeg
impl RefUnwindSafe for PgLSeg
impl Send for PgLSeg
impl Sync for PgLSeg
impl Unpin for PgLSeg
impl UnsafeUnpin for PgLSeg
impl UnwindSafe for PgLSeg
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