pub struct FarmerCacheWorker<NC>where
NC: Debug,{ /* private fields */ }Expand description
Farmer cache worker used to drive the farmer cache backend
Implementations§
Source§impl<NC> FarmerCacheWorker<NC>where
NC: NodeClient,
impl<NC> FarmerCacheWorker<NC>where
NC: NodeClient,
Sourcepub async fn run<PG>(self, piece_getter: PG)where
PG: PieceGetter,
pub async fn run<PG>(self, piece_getter: PG)where
PG: PieceGetter,
Run the cache worker with provided piece getter.
NOTE: Piece getter must not depend on farmer cache in order to avoid reference cycles!
Trait Implementations§
Auto Trait Implementations§
impl<NC> Freeze for FarmerCacheWorker<NC>where
NC: Freeze,
impl<NC> !RefUnwindSafe for FarmerCacheWorker<NC>
impl<NC> Send for FarmerCacheWorker<NC>where
NC: Send,
impl<NC> Sync for FarmerCacheWorker<NC>where
NC: Sync,
impl<NC> Unpin for FarmerCacheWorker<NC>where
NC: Unpin,
impl<NC> !UnwindSafe for FarmerCacheWorker<NC>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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