pub struct PrimadbLimits {
pub max_pending_ops: usize,
pub max_ops_per_message: usize,
pub max_route_payload_bytes: usize,
pub max_seen_routes: usize,
pub max_batch_items_per_route: usize,
pub max_query_entries_per_chunk: usize,
pub max_snapshot_nodes_per_chunk: usize,
pub max_snapshot_ops_per_chunk: usize,
pub max_peer_recommendations: usize,
pub max_active_remote_watches: usize,
}Fields§
§max_pending_ops: usize§max_ops_per_message: usize§max_route_payload_bytes: usize§max_seen_routes: usize§max_batch_items_per_route: usize§max_query_entries_per_chunk: usize§max_snapshot_nodes_per_chunk: usize§max_snapshot_ops_per_chunk: usize§max_peer_recommendations: usize§max_active_remote_watches: usizeTrait Implementations§
Source§impl Clone for PrimadbLimits
impl Clone for PrimadbLimits
Source§fn clone(&self) -> PrimadbLimits
fn clone(&self) -> PrimadbLimits
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 moreSource§impl Debug for PrimadbLimits
impl Debug for PrimadbLimits
Source§impl Default for PrimadbLimits
impl Default for PrimadbLimits
Source§impl<'de> Deserialize<'de> for PrimadbLimits
impl<'de> Deserialize<'de> for PrimadbLimits
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 PartialEq for PrimadbLimits
impl PartialEq for PrimadbLimits
Source§impl Serialize for PrimadbLimits
impl Serialize for PrimadbLimits
impl Eq for PrimadbLimits
impl StructuralPartialEq for PrimadbLimits
Auto Trait Implementations§
impl Freeze for PrimadbLimits
impl RefUnwindSafe for PrimadbLimits
impl Send for PrimadbLimits
impl Sync for PrimadbLimits
impl Unpin for PrimadbLimits
impl UnwindSafe for PrimadbLimits
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