pub struct ChunkCache(/* private fields */);
Implementations§
Source§impl ChunkCache
impl ChunkCache
pub fn to_weak(&self) -> WeakChunkCache
Source§impl ChunkCache
impl ChunkCache
pub fn new(stack: Weak<StackImpl>, chunk: ChunkId) -> Self
pub async fn wait_loaded(&self) -> bool
pub fn chunk(&self) -> &ChunkId
pub fn stream(&self) -> &ChunkStreamCache
pub fn create_encoder(&self, desc: &ChunkCodecDesc) -> Box<dyn ChunkEncoder>
pub fn exists(&self, range: Range<usize>) -> Option<Range<usize>>
pub async fn wait_exists<T: Future<Output = BuckyError>, A: Fn() -> T>( &self, range: Range<usize>, abort: A, ) -> BuckyResult<Range<usize>>
pub async fn read<T: Future<Output = BuckyError>, A: Fn() -> T>( &self, offset: usize, buffer: &mut [u8], abort: A, ) -> BuckyResult<usize>
Trait Implementations§
Source§impl Clone for ChunkCache
impl Clone for ChunkCache
Source§fn clone(&self) -> ChunkCache
fn clone(&self) -> ChunkCache
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ChunkCache
impl RefUnwindSafe for ChunkCache
impl Send for ChunkCache
impl Sync for ChunkCache
impl Unpin for ChunkCache
impl UnwindSafe for ChunkCache
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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