pub struct LedgerEntryRecord {
pub entry_id: LedgerEntryId,
pub tenant_id: TenantId,
pub ledger_key: String,
pub actor_id: Option<ActorId>,
pub payload: Vec<u8>,
pub timestamp: u64,
}Expand description
Ledger entry record.
Fields§
§entry_id: LedgerEntryId§tenant_id: TenantId§ledger_key: String§actor_id: Option<ActorId>§payload: Vec<u8>§timestamp: u64Trait Implementations§
Source§impl Clone for LedgerEntryRecord
impl Clone for LedgerEntryRecord
Source§fn clone(&self) -> LedgerEntryRecord
fn clone(&self) -> LedgerEntryRecord
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LedgerEntryRecord
impl RefUnwindSafe for LedgerEntryRecord
impl Send for LedgerEntryRecord
impl Sync for LedgerEntryRecord
impl Unpin for LedgerEntryRecord
impl UnsafeUnpin for LedgerEntryRecord
impl UnwindSafe for LedgerEntryRecord
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