pub struct QueryFlags {
pub complete: bool,
pub verified: bool,
}
Expand description
Fields§
§complete: bool
Only return peers that supposedly have the complete data.
If this is false, the response might contain peers that only have some of the data.
verified: bool
Only return hosts that have been verified.
In case of a partial query, verification just means a check that the host exists and returns the size for the data.
In case of a complete query, verification means that the host has been randomly probed for the data.
Trait Implementations§
source§impl Clone for QueryFlags
impl Clone for QueryFlags
source§fn clone(&self) -> QueryFlags
fn clone(&self) -> QueryFlags
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 QueryFlags
impl Debug for QueryFlags
source§impl<'de> Deserialize<'de> for QueryFlags
impl<'de> Deserialize<'de> for QueryFlags
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Ord for QueryFlags
impl Ord for QueryFlags
source§fn cmp(&self, other: &QueryFlags) -> Ordering
fn cmp(&self, other: &QueryFlags) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for QueryFlags
impl PartialEq for QueryFlags
source§fn eq(&self, other: &QueryFlags) -> bool
fn eq(&self, other: &QueryFlags) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for QueryFlags
impl PartialOrd for QueryFlags
source§fn partial_cmp(&self, other: &QueryFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &QueryFlags) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for QueryFlags
impl Serialize for QueryFlags
impl Copy for QueryFlags
impl Eq for QueryFlags
impl StructuralPartialEq for QueryFlags
Auto Trait Implementations§
impl Freeze for QueryFlags
impl RefUnwindSafe for QueryFlags
impl Send for QueryFlags
impl Sync for QueryFlags
impl Unpin for QueryFlags
impl UnwindSafe for QueryFlags
Blanket Implementations§
source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.