pub struct TxnHeader {
pub timestamp: Zoned,
pub code: Option<String>,
pub description: Option<String>,
pub uuid: Option<Uuid>,
pub location: Option<GeoPoint>,
pub tags: Option<Tags>,
pub comments: Option<Comments>,
}Expand description
Transaction Header Structure
Fields§
§timestamp: ZonedTxn timestamp with Zone information
code: Option<String>Txn Code field, if any
description: Option<String>Txn Description, if any
uuid: Option<Uuid>Txn UUID, if any. This is mandatory, if audit-mode is on
location: Option<GeoPoint>Txn location, if any
Txn tags, if any
comments: Option<Comments>Txn comments, if any
Implementations§
Trait Implementations§
Source§impl Ord for TxnHeader
impl Ord for TxnHeader
Source§impl PartialOrd for TxnHeader
impl PartialOrd for TxnHeader
impl Eq for TxnHeader
Auto Trait Implementations§
impl Freeze for TxnHeader
impl RefUnwindSafe for TxnHeader
impl Send for TxnHeader
impl Sync for TxnHeader
impl Unpin for TxnHeader
impl UnwindSafe for TxnHeader
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