File tree 4 files changed +0
-12
lines changed
4 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -82,9 +82,6 @@ impl BytesOptions {
82
82
/// Set the field as a single-valued fast field.
83
83
///
84
84
/// Fast fields are designed for random access.
85
- /// Access time are similar to a random lookup in an array.
86
- /// If more than one value is associated with a fast field, only the last one is
87
- /// kept.
88
85
#[ must_use]
89
86
pub fn set_fast ( mut self ) -> BytesOptions {
90
87
self . fast = true ;
Original file line number Diff line number Diff line change @@ -81,9 +81,6 @@ impl DateOptions {
81
81
/// Set the field as a single-valued fast field.
82
82
///
83
83
/// Fast fields are designed for random access.
84
- /// Access time are similar to a random lookup in an array.
85
- /// If more than one value is associated with a fast field, only the last one is
86
- /// kept.
87
84
#[ must_use]
88
85
pub fn set_fast ( mut self ) -> DateOptions {
89
86
self . fast = true ;
Original file line number Diff line number Diff line change @@ -83,9 +83,6 @@ impl IpAddrOptions {
83
83
/// Set the field as a fast field.
84
84
///
85
85
/// Fast fields are designed for random access.
86
- /// Access time are similar to a random lookup in an array.
87
- /// If more than one value is associated with a fast field, only the last one is
88
- /// kept.
89
86
#[ must_use]
90
87
pub fn set_fast ( mut self ) -> Self {
91
88
self . fast = true ;
Original file line number Diff line number Diff line change @@ -123,9 +123,6 @@ impl NumericOptions {
123
123
/// Set the field as a single-valued fast field.
124
124
///
125
125
/// Fast fields are designed for random access.
126
- /// Access time are similar to a random lookup in an array.
127
- /// If more than one value is associated with a fast field, only the last one is
128
- /// kept.
129
126
#[ must_use]
130
127
pub fn set_fast ( mut self ) -> NumericOptions {
131
128
self . fast = true ;
You can’t perform that action at this time.
0 commit comments