#[non_exhaustive]pub enum Min {
Minimum(f64),
ExclusiveMinimum(f64),
}Available on crate features
assistant-service or conversational-search-service or search-service or serving-config-service only.Expand description
The lower bound of the interval. If neither of the min fields are set, then the lower bound is negative infinity.
This field must be not larger than max.
Otherwise, an INVALID_ARGUMENT error is returned.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl StructuralPartialEq for Min
Auto Trait Implementations§
impl Freeze for Min
impl RefUnwindSafe for Min
impl Send for Min
impl Sync for Min
impl Unpin for Min
impl UnwindSafe for Min
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