pub struct PgLine {
    pub a: f64,
    pub b: f64,
    pub c: f64,
}Expand description
§Postgres Geometric Line type
Description: Infinite line
Representation: {A, B, C}
Lines are represented by the linear equation Ax + By + C = 0, where A and B are not both zero.
See Postgres Manual, Section 8.8.2, Geometric Types - Lines for details.
Fields§
§a: f64§b: f64§c: f64Trait Implementations§
Source§impl Encode<'_, Postgres> for PgLine
 
impl Encode<'_, Postgres> for PgLine
fn produces(&self) -> Option<PgTypeInfo>
Source§fn encode_by_ref(
    &self,
    buf: &mut PgArgumentBuffer,
) -> Result<IsNull, BoxDynError>
 
fn encode_by_ref( &self, buf: &mut PgArgumentBuffer, ) -> Result<IsNull, BoxDynError>
Source§fn encode(
    self,
    buf: &mut <DB as Database>::ArgumentBuffer,
) -> Result<IsNull, Box<dyn Error + Send + Sync>>where
    Self: Sized,
 
fn encode(
    self,
    buf: &mut <DB as Database>::ArgumentBuffer,
) -> Result<IsNull, Box<dyn Error + Send + Sync>>where
    Self: Sized,
Writes the value of 
self into buf in the expected format for the database.fn size_hint(&self) -> usize
Source§impl PgHasArrayType for PgLine
 
impl PgHasArrayType for PgLine
fn array_type_info() -> PgTypeInfo
fn array_compatible(ty: &PgTypeInfo) -> bool
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 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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
 
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more