Struct sentry::db::accounting::Accounting
source · pub struct Accounting {
pub channel_id: ChannelId,
pub side: Side,
pub address: Address,
pub amount: UnifiedNum,
pub updated: Option<DateTime<Utc>>,
pub created: DateTime<Utc>,
}Fields
channel_id: ChannelIdside: Sideaddress: Addressamount: UnifiedNumupdated: Option<DateTime<Utc>>created: DateTime<Utc>Trait Implementations
sourceimpl Clone for Accounting
impl Clone for Accounting
sourcefn clone(&self) -> Accounting
fn clone(&self) -> Accounting
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for Accounting
impl Debug for Accounting
sourceimpl From<&Row> for Accounting
impl From<&Row> for Accounting
sourceimpl PartialEq<Accounting> for Accounting
impl PartialEq<Accounting> for Accounting
sourcefn eq(&self, other: &Accounting) -> bool
fn eq(&self, other: &Accounting) -> bool
impl Eq for Accounting
impl StructuralEq for Accounting
impl StructuralPartialEq for Accounting
Auto Trait Implementations
impl RefUnwindSafe for Accounting
impl Send for Accounting
impl Sync for Accounting
impl Unpin for Accounting
impl UnwindSafe for Accounting
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.