pub struct CoreToLL<T, C> { /* private fields */ }Expand description
Adapts a Core store to the LL Store interface.
This bridge:
- Converts
&[&[u8]]paths to validatedPath - Parses/serializes data as needed
- Returns bytes in the configured format
Implementations§
Source§impl<T, C> CoreToLL<T, C>
impl<T, C> CoreToLL<T, C>
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Unwrap, returning the inner Core store.
Trait Implementations§
Auto Trait Implementations§
impl<T, C> Freeze for CoreToLL<T, C>
impl<T, C> RefUnwindSafe for CoreToLL<T, C>where
T: RefUnwindSafe,
C: RefUnwindSafe,
impl<T, C> Send for CoreToLL<T, C>
impl<T, C> Sync for CoreToLL<T, C>
impl<T, C> Unpin for CoreToLL<T, C>
impl<T, C> UnsafeUnpin for CoreToLL<T, C>where
T: UnsafeUnpin,
C: UnsafeUnpin,
impl<T, C> UnwindSafe for CoreToLL<T, C>where
T: UnwindSafe,
C: UnwindSafe,
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