• Home
  • Raw
  • Download

Lines Matching refs:partial_cmp

1070     fn partial_cmp(&self, other: &BytesMut) -> Option<cmp::Ordering> {  in partial_cmp()  method
1071 self.as_slice().partial_cmp(other.as_slice()) in partial_cmp()
1336 fn partial_cmp(&self, other: &[u8]) -> Option<cmp::Ordering> { in partial_cmp() method
1337 (**self).partial_cmp(other) in partial_cmp()
1348 fn partial_cmp(&self, other: &BytesMut) -> Option<cmp::Ordering> { in partial_cmp() method
1349 <[u8] as PartialOrd<[u8]>>::partial_cmp(self, other) in partial_cmp()
1360 fn partial_cmp(&self, other: &str) -> Option<cmp::Ordering> { in partial_cmp() method
1361 (**self).partial_cmp(other.as_bytes()) in partial_cmp()
1372 fn partial_cmp(&self, other: &BytesMut) -> Option<cmp::Ordering> { in partial_cmp() method
1373 <[u8] as PartialOrd<[u8]>>::partial_cmp(self.as_bytes(), other) in partial_cmp()
1384 fn partial_cmp(&self, other: &Vec<u8>) -> Option<cmp::Ordering> { in partial_cmp() method
1385 (**self).partial_cmp(&other[..]) in partial_cmp()
1396 fn partial_cmp(&self, other: &BytesMut) -> Option<cmp::Ordering> { in partial_cmp() method
1397 other.partial_cmp(self) in partial_cmp()
1408 fn partial_cmp(&self, other: &String) -> Option<cmp::Ordering> { in partial_cmp() method
1409 (**self).partial_cmp(other.as_bytes()) in partial_cmp()
1420 fn partial_cmp(&self, other: &BytesMut) -> Option<cmp::Ordering> { in partial_cmp() method
1421 <[u8] as PartialOrd<[u8]>>::partial_cmp(self.as_bytes(), other) in partial_cmp()
1438 fn partial_cmp(&self, other: &&'a T) -> Option<cmp::Ordering> { in partial_cmp() function
1439 self.partial_cmp(*other) in partial_cmp()
1450 fn partial_cmp(&self, other: &BytesMut) -> Option<cmp::Ordering> { in partial_cmp() method
1451 <[u8] as PartialOrd<[u8]>>::partial_cmp(self, other) in partial_cmp()
1462 fn partial_cmp(&self, other: &BytesMut) -> Option<cmp::Ordering> { in partial_cmp() method
1463 other.partial_cmp(self) in partial_cmp()