pub struct BlobEntry {
pub table: BlobTable,
pub key: String,
}
Expand description
A unique entry in the data store, in a specific BlobTable
.
Fields§
§table: BlobTable
The BlobTable
where the entry is stored.
key: String
The key for the entry, inside the table.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for BlobEntry
impl Send for BlobEntry
impl Sync for BlobEntry
impl Unpin for BlobEntry
impl UnwindSafe for BlobEntry
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