pub struct StorageEntry {
pub oid: Vec<u8>,
pub state: Vec<u8>,
pub dirty: bool,
}Expand description
Storage-Eintrag — Spec PSS §10.2.
Fields§
§oid: Vec<u8>Storage-Object-Id (oid). Spec §10.2.1 — Primary-Key.
state: Vec<u8>State-Bytes (CDR-encoded oder von Caller serialisiert).
dirty: booldirty — wurde modifiziert seit letztem flush.
Trait Implementations§
Source§impl Clone for StorageEntry
impl Clone for StorageEntry
Source§fn clone(&self) -> StorageEntry
fn clone(&self) -> StorageEntry
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 StorageEntry
impl Debug for StorageEntry
Source§impl PartialEq for StorageEntry
impl PartialEq for StorageEntry
Source§fn eq(&self, other: &StorageEntry) -> bool
fn eq(&self, other: &StorageEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StorageEntry
impl StructuralPartialEq for StorageEntry
Auto Trait Implementations§
impl Freeze for StorageEntry
impl RefUnwindSafe for StorageEntry
impl Send for StorageEntry
impl Sync for StorageEntry
impl Unpin for StorageEntry
impl UnsafeUnpin for StorageEntry
impl UnwindSafe for StorageEntry
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