pub struct PgLine {
pub a: f64,
pub b: f64,
pub c: f64,
}Expand description
PostgreSQL LINE type – 24 bytes (3 x f64), represents Ax + By + C = 0.
Fields§
§a: f64§b: f64§c: f64Trait Implementations§
Source§impl ToSql for PgLine
impl ToSql for PgLine
impl Copy for PgLine
impl StructuralPartialEq for PgLine
Auto Trait Implementations§
impl Freeze for PgLine
impl RefUnwindSafe for PgLine
impl Send for PgLine
impl Sync for PgLine
impl Unpin for PgLine
impl UnsafeUnpin for PgLine
impl UnwindSafe for PgLine
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