pub struct BlobReachabilityLimits {
pub max_nodes: usize,
pub max_values: usize,
pub max_blobs: usize,
pub max_blob_bytes: u64,
}Expand description
Hard bounds for discovering offloaded blobs through retained trees.
Fields§
§max_nodes: usize§max_values: usize§max_blobs: usize§max_blob_bytes: u64Implementations§
Trait Implementations§
Source§impl Clone for BlobReachabilityLimits
impl Clone for BlobReachabilityLimits
Source§fn clone(&self) -> BlobReachabilityLimits
fn clone(&self) -> BlobReachabilityLimits
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BlobReachabilityLimits
Source§impl Debug for BlobReachabilityLimits
impl Debug for BlobReachabilityLimits
impl Eq for BlobReachabilityLimits
Source§impl PartialEq for BlobReachabilityLimits
impl PartialEq for BlobReachabilityLimits
impl StructuralPartialEq for BlobReachabilityLimits
Auto Trait Implementations§
impl Freeze for BlobReachabilityLimits
impl RefUnwindSafe for BlobReachabilityLimits
impl Send for BlobReachabilityLimits
impl Sync for BlobReachabilityLimits
impl Unpin for BlobReachabilityLimits
impl UnsafeUnpin for BlobReachabilityLimits
impl UnwindSafe for BlobReachabilityLimits
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