Lines Matching refs:other
1342 fn eq(&self, other: &Self) -> bool {
1343 PartialEq::eq(&**self, &**other)
1346 fn ne(&self, other: &Self) -> bool {
1347 PartialEq::ne(&**self, &**other)
1353 fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
1354 PartialOrd::partial_cmp(&**self, &**other)
1357 fn lt(&self, other: &Self) -> bool {
1358 PartialOrd::lt(&**self, &**other)
1361 fn le(&self, other: &Self) -> bool {
1362 PartialOrd::le(&**self, &**other)
1365 fn ge(&self, other: &Self) -> bool {
1366 PartialOrd::ge(&**self, &**other)
1369 fn gt(&self, other: &Self) -> bool {
1370 PartialOrd::gt(&**self, &**other)
1376 fn cmp(&self, other: &Self) -> Ordering {
1377 Ord::cmp(&**self, &**other)
2051 fn clone_from(&mut self, other: &Self) {
2052 if self.len() == other.len() {
2053 self.clone_from_slice(&other);
2055 *self = other.clone();