pub struct CachedPieceByIndexRequest {
pub piece_index: PieceIndex,
pub cached_pieces: Arc<Vec<PieceIndex>>,
}
Expand description
Cached-piece-by-index request.
This is similar to PieceByIndexRequest
, but will only respond with cached pieces.
Fields§
§piece_index: PieceIndex
Request key - piece index
cached_pieces: Arc<Vec<PieceIndex>>
Additional pieces that requester is interested in if they are cached locally
Implementations§
source§impl CachedPieceByIndexRequest
impl CachedPieceByIndexRequest
sourcepub const RECOMMENDED_LIMIT: usize = 128usize
pub const RECOMMENDED_LIMIT: usize = 128usize
Max number of cached piece indexes to accept per request, equals to the number of source shards in a sector and fits nicely into a single TCP packet
Trait Implementations§
source§impl Clone for CachedPieceByIndexRequest
impl Clone for CachedPieceByIndexRequest
source§fn clone(&self) -> CachedPieceByIndexRequest
fn clone(&self) -> CachedPieceByIndexRequest
Returns a copy 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 moresource§impl Debug for CachedPieceByIndexRequest
impl Debug for CachedPieceByIndexRequest
source§impl Decode for CachedPieceByIndexRequest
impl Decode for CachedPieceByIndexRequest
source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy, ) -> Result<Self, Error>
Attempt to deserialise the value from input.
§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
§fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
Attempt to skip the encoded value from input. Read more
§fn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
Returns the fixed encoded size of the type. Read more
source§impl Encode for CachedPieceByIndexRequest
impl Encode for CachedPieceByIndexRequest
source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
Convert self to a slice and append it to the destination.
§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
source§impl GenericRequest for CachedPieceByIndexRequest
impl GenericRequest for CachedPieceByIndexRequest
source§const PROTOCOL_NAME: &'static str = "/subspace/cached-piece-by-index/0.1.0"
const PROTOCOL_NAME: &'static str = "/subspace/cached-piece-by-index/0.1.0"
Defines request-response protocol name.
source§const LOG_TARGET: &'static str = "cached-piece-by-index-request-response-handler"
const LOG_TARGET: &'static str = "cached-piece-by-index-request-response-handler"
Specifies log-parameters for tracing.
source§type Response = CachedPieceByIndexResponse
type Response = CachedPieceByIndexResponse
Response type that corresponds to this request
impl EncodeLike for CachedPieceByIndexRequest
impl Eq for CachedPieceByIndexRequest
impl StructuralPartialEq for CachedPieceByIndexRequest
Auto Trait Implementations§
impl Freeze for CachedPieceByIndexRequest
impl RefUnwindSafe for CachedPieceByIndexRequest
impl Send for CachedPieceByIndexRequest
impl Sync for CachedPieceByIndexRequest
impl Unpin for CachedPieceByIndexRequest
impl UnwindSafe for CachedPieceByIndexRequest
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> DecodeAll for Twhere
T: Decode,
impl<T> DecodeAll for Twhere
T: Decode,
§fn decode_all(input: &mut &[u8]) -> Result<T, Error>
fn decode_all(input: &mut &[u8]) -> Result<T, Error>
Decode
Self
and consume all of the given input data. Read more§impl<T> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere
T: Decode,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. 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