pub struct WalCommit {
pub oid: Oid,
pub actor_id: String,
pub chunk_hash: String,
pub prev_wal: Option<Oid>,
}Expand description
Information about a WAL commit
Fields§
§oid: Oid§actor_id: String§chunk_hash: String§prev_wal: Option<Oid>Trait Implementations§
Auto Trait Implementations§
impl Freeze for WalCommit
impl RefUnwindSafe for WalCommit
impl Send for WalCommit
impl Sync for WalCommit
impl Unpin for WalCommit
impl UnwindSafe for WalCommit
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