pub struct BitswapStorage<S: StoreParams, T: Storage<S>> { /* private fields */ }Implementations§
Source§impl<S: StoreParams, T: Storage<S>> BitswapStorage<S, T>
impl<S: StoreParams, T: Storage<S>> BitswapStorage<S, T>
Trait Implementations§
Source§impl<S: StoreParams, T: Storage<S>> BitswapStore<S> for BitswapStorage<S, T>
impl<S: StoreParams, T: Storage<S>> BitswapStore<S> for BitswapStorage<S, T>
Source§impl<S: StoreParams, T: Storage<S>> BitswapSync for BitswapStorage<S, T>
impl<S: StoreParams, T: Storage<S>> BitswapSync for BitswapStorage<S, T>
Auto Trait Implementations§
impl<S, T> Freeze for BitswapStorage<S, T>
impl<S, T> RefUnwindSafe for BitswapStorage<S, T>where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<S, T> Send for BitswapStorage<S, T>
impl<S, T> Sync for BitswapStorage<S, T>
impl<S, T> Unpin for BitswapStorage<S, T>
impl<S, T> UnwindSafe for BitswapStorage<S, T>where
S: UnwindSafe,
T: RefUnwindSafe,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more