pub struct LedgerEntryView {
pub id: Uuid,
pub game_day: u64,
pub signed_copper: i64,
pub category: LedgerCategory,
pub label: String,
}Fields§
§id: Uuid§game_day: u64§signed_copper: i64§category: LedgerCategory§label: StringTrait Implementations§
Source§impl Clone for LedgerEntryView
impl Clone for LedgerEntryView
Source§fn clone(&self) -> LedgerEntryView
fn clone(&self) -> LedgerEntryView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LedgerEntryView
impl Debug for LedgerEntryView
Source§impl<'de> Deserialize<'de> for LedgerEntryView
impl<'de> Deserialize<'de> for LedgerEntryView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LedgerEntryView
impl PartialEq for LedgerEntryView
Source§impl Serialize for LedgerEntryView
impl Serialize for LedgerEntryView
impl StructuralPartialEq for LedgerEntryView
Auto Trait Implementations§
impl Freeze for LedgerEntryView
impl RefUnwindSafe for LedgerEntryView
impl Send for LedgerEntryView
impl Sync for LedgerEntryView
impl Unpin for LedgerEntryView
impl UnsafeUnpin for LedgerEntryView
impl UnwindSafe for LedgerEntryView
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