pub struct PieceByIndexRequest {
pub piece_index: PieceIndex,
pub cached_pieces: Arc<Vec<PieceIndex>>,
}
Expand description
Piece-by-index request
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 PieceByIndexRequest
impl PieceByIndexRequest
sourcepub const RECOMMENDED_LIMIT: usize = 128usize
pub const RECOMMENDED_LIMIT: usize = 128usize
Max number of cached pieces 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 PieceByIndexRequest
impl Clone for PieceByIndexRequest
source§fn clone(&self) -> PieceByIndexRequest
fn clone(&self) -> PieceByIndexRequest
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 PieceByIndexRequest
impl Debug for PieceByIndexRequest
source§impl Decode for PieceByIndexRequest
impl Decode for PieceByIndexRequest
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 PieceByIndexRequest
impl Encode for PieceByIndexRequest
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 PieceByIndexRequest
impl GenericRequest for PieceByIndexRequest
source§const PROTOCOL_NAME: &'static str = "/subspace/piece-by-index/0.1.0"
const PROTOCOL_NAME: &'static str = "/subspace/piece-by-index/0.1.0"
Defines request-response protocol name.
source§const LOG_TARGET: &'static str = "piece-by-index-request-response-handler"
const LOG_TARGET: &'static str = "piece-by-index-request-response-handler"
Specifies log-parameters for tracing.
source§type Response = PieceByIndexResponse
type Response = PieceByIndexResponse
Response type that corresponds to this request
source§impl PartialEq for PieceByIndexRequest
impl PartialEq for PieceByIndexRequest
impl EncodeLike for PieceByIndexRequest
impl Eq for PieceByIndexRequest
impl StructuralPartialEq for PieceByIndexRequest
Auto Trait Implementations§
impl Freeze for PieceByIndexRequest
impl RefUnwindSafe for PieceByIndexRequest
impl Send for PieceByIndexRequest
impl Sync for PieceByIndexRequest
impl Unpin for PieceByIndexRequest
impl UnwindSafe for PieceByIndexRequest
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