Lines Matching refs:max
36 pub max: Option<T>, field
43 max: Default::default(), in default()
50 let (min, max) = range.into_inner(); in from()
53 max: Some(max), in from()
62 max: None, in from()
71 max: Some(range.end), in from()
90 if let Some(ref max) = self.max { in contains()
91 if max < value { in contains()
110 assert_eq!(subject.max, None); in default()
121 assert_eq!(subject.max, Some(5)); in range_inclusive()
129 assert_eq!(subject.max, None); in range_from()
137 assert_eq!(subject.max, Some(5)); in range_to_inclusive()
199 max: Some(34), in customized()