[−][src]Struct prost_sled::ProtoDb
Wrapper around sled::Db that allows you to use types implementing prost::Message instead of raw bytes.
Implementations
impl ProtoDb[src]
ProtoDb is a trait intended to be used to provide extension methods to sled::Db.
ProtoDb provides methods to make it easier store and retrieve protobuf encoded data in a Sled database.
pub fn get<K, T>(&self, key: K) -> Result<Option<T>> where
K: AsRef<[u8]>,
T: Message + Default, [src]
K: AsRef<[u8]>,
T: Message + Default,
Get a value by its key.
pub fn update_and_fetch<K, V, F, T>(&self, key: K, f: F) -> Result<Option<T>> where
K: AsRef<[u8]>,
F: FnMut(Option<T>) -> Option<V>,
V: Into<T>,
T: Message + Default, [src]
K: AsRef<[u8]>,
F: FnMut(Option<T>) -> Option<V>,
V: Into<T>,
T: Message + Default,
Atomically retrieve then update a value.
pub fn insert<K, V, T>(&self, key: K, value: V) -> Result<Option<T>> where
K: AsRef<[u8]>,
V: Into<T>,
T: Message + Default, [src]
K: AsRef<[u8]>,
V: Into<T>,
T: Message + Default,
Insert a value into the database.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for ProtoDb[src]
impl Send for ProtoDb[src]
impl Sync for ProtoDb[src]
impl Unpin for ProtoDb[src]
impl !UnwindSafe for ProtoDb[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Pointable for T
pub const ALIGN: usize
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn drop(ptr: usize)
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,