pub struct IndexSemanticLimits {
pub max_term_bytes: usize,
pub max_projection_bytes: usize,
pub max_all_value_bytes: usize,
pub max_terms_per_record: usize,
pub max_projected_bytes_per_record: usize,
}Expand description
Per-record semantic limits committed by an index descriptor.
Fields§
§max_term_bytes: usize§max_projection_bytes: usize§max_all_value_bytes: usize§max_terms_per_record: usize§max_projected_bytes_per_record: usizeTrait Implementations§
Source§impl Clone for IndexSemanticLimits
impl Clone for IndexSemanticLimits
Source§fn clone(&self) -> IndexSemanticLimits
fn clone(&self) -> IndexSemanticLimits
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 moreSource§impl Debug for IndexSemanticLimits
impl Debug for IndexSemanticLimits
Source§impl<'de> Deserialize<'de> for IndexSemanticLimits
impl<'de> Deserialize<'de> for IndexSemanticLimits
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
impl Eq for IndexSemanticLimits
Source§impl PartialEq for IndexSemanticLimits
impl PartialEq for IndexSemanticLimits
Source§impl Serialize for IndexSemanticLimits
impl Serialize for IndexSemanticLimits
impl StructuralPartialEq for IndexSemanticLimits
Auto Trait Implementations§
impl Freeze for IndexSemanticLimits
impl RefUnwindSafe for IndexSemanticLimits
impl Send for IndexSemanticLimits
impl Sync for IndexSemanticLimits
impl Unpin for IndexSemanticLimits
impl UnsafeUnpin for IndexSemanticLimits
impl UnwindSafe for IndexSemanticLimits
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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