pub enum RangeFacetIncludeOptions {
Lower,
Upper,
Edge,
Outer,
All,
}
Expand description
レンジの境界値の扱いを制御するパラメータ
- Lower: レンジを右半開区間で扱う
- Upper: レンジを左半開区間で扱う
- Edge: 一番最初の区間の下限境界値と、一番最後の区間の上限境界値を含む
- Outer: 境界値はどちらの区間にも含まれる?
- All: すべてのオプションを適用する
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Instruments this type with the provided
Span
, returning an
Instrumented
wrapper.
Read more
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.