Struct diesel::pg::data_types::PgMoney
source · pub struct PgMoney(pub i64);
Expand description
Money is represented in Postgres as a 64 bit signed integer. This struct is a dumb wrapper
type, meant only to indicate the integer’s meaning. The fractional precision of the value is
determined by the lc_monetary
setting of the database.
This struct is re-exported as Cents
as a convenient and conventional expression of a typical
unit of 1/100th of currency. For other names or precisions, users might consider a differently
named use
of the PgMoney
struct.
use diesel::data_types::PgMoney as Pence; // 1/100th unit of Pound
use diesel::data_types::PgMoney as Fils; // 1/1000th unit of Dinar
Tuple Fields§
§0: i64
Trait Implementations§
source§impl AddAssign for PgMoney
impl AddAssign for PgMoney
source§fn add_assign(&mut self, rhs: PgMoney)
fn add_assign(&mut self, rhs: PgMoney)
§Panics
Performs a checked addition, and will panic!
on overflow in both debug
and release
.
source§impl<'expr> AsExpression<Money> for &'expr PgMoney
impl<'expr> AsExpression<Money> for &'expr PgMoney
§type Expression = Bound<Money, &'expr PgMoney>
type Expression = Bound<Money, &'expr PgMoney>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<Money> for PgMoney
impl AsExpression<Money> for PgMoney
§type Expression = Bound<Money, PgMoney>
type Expression = Bound<Money, PgMoney>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl<'expr> AsExpression<Nullable<Money>> for &'expr PgMoney
impl<'expr> AsExpression<Nullable<Money>> for &'expr PgMoney
§type Expression = Bound<Nullable<Money>, &'expr PgMoney>
type Expression = Bound<Nullable<Money>, &'expr PgMoney>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<Nullable<Money>> for PgMoney
impl AsExpression<Nullable<Money>> for PgMoney
§type Expression = Bound<Nullable<Money>, PgMoney>
type Expression = Bound<Nullable<Money>, PgMoney>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl Ord for PgMoney
impl Ord for PgMoney
source§impl PartialEq for PgMoney
impl PartialEq for PgMoney
source§impl PartialOrd for PgMoney
impl PartialOrd for PgMoney
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl SubAssign for PgMoney
impl SubAssign for PgMoney
source§fn sub_assign(&mut self, rhs: PgMoney)
fn sub_assign(&mut self, rhs: PgMoney)
§Panics
Performs a checked subtraction, and will panic!
on underflow in both debug
and release
.
impl Copy for PgMoney
impl Eq for PgMoney
impl StructuralPartialEq for PgMoney
Auto Trait Implementations§
impl Freeze for PgMoney
impl RefUnwindSafe for PgMoney
impl Send for PgMoney
impl Sync for PgMoney
impl Unpin for PgMoney
impl UnwindSafe for PgMoney
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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T, ST, DB> FromSqlRow<ST, DB> for Twhere
T: Queryable<ST, DB>,
ST: SqlTypeOrSelectable,
DB: Backend,
<T as Queryable<ST, DB>>::Row: FromStaticSqlRow<ST, DB>,
impl<T, ST, DB> FromSqlRow<ST, DB> for Twhere
T: Queryable<ST, DB>,
ST: SqlTypeOrSelectable,
DB: Backend,
<T as Queryable<ST, DB>>::Row: FromStaticSqlRow<ST, DB>,
source§impl<T, ST, DB> FromStaticSqlRow<ST, DB> for T
impl<T, ST, DB> FromStaticSqlRow<ST, DB> for T
source§impl<T> IntoSql for T
impl<T> IntoSql for T
source§impl<T, ST, DB> StaticallySizedRow<ST, DB> for T
impl<T, ST, DB> StaticallySizedRow<ST, DB> for T
source§const FIELD_COUNT: usize = const FIELD_COUNT: usize = <ST as crate::util::TupleSize>::SIZE;
const FIELD_COUNT: usize = const FIELD_COUNT: usize = <ST as crate::util::TupleSize>::SIZE;
The number of fields that this type will consume.