pub struct SessionDelta {
pub session_snapshot: Vec<u8>,
}Expand description
Describes session-level writes to be committed atomically with receipts.
Fields§
§session_snapshot: Vec<u8>Serialized session snapshot (opaque to RuntimeStore).
Trait Implementations§
Source§impl Clone for SessionDelta
impl Clone for SessionDelta
Source§fn clone(&self) -> SessionDelta
fn clone(&self) -> SessionDelta
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 SessionDelta
impl RefUnwindSafe for SessionDelta
impl Send for SessionDelta
impl Sync for SessionDelta
impl Unpin for SessionDelta
impl UnsafeUnpin for SessionDelta
impl UnwindSafe for SessionDelta
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