2018-07-28 15:34:52 +00:00
|
|
|
#[warn(clippy::cmp_owned)]
|
|
|
|
#[allow(clippy::unnecessary_operation)]
|
2015-05-21 12:51:43 +00:00
|
|
|
fn main() {
|
2018-12-09 22:26:16 +00:00
|
|
|
fn with_to_string(x: &str) {
|
2015-10-12 22:46:05 +00:00
|
|
|
x != "foo".to_string();
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2015-10-12 22:46:05 +00:00
|
|
|
"foo".to_string() != x;
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
2016-01-24 09:16:56 +00:00
|
|
|
|
|
|
|
let x = "oh";
|
|
|
|
|
2015-08-11 18:22:20 +00:00
|
|
|
with_to_string(x);
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
x != "foo".to_owned();
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
x != String::from("foo");
|
2016-01-18 14:35:50 +00:00
|
|
|
|
|
|
|
42.to_string() == "42";
|
2017-05-11 16:59:36 +00:00
|
|
|
|
|
|
|
Foo.to_owned() == Foo;
|
2018-10-09 02:04:29 +00:00
|
|
|
|
|
|
|
"abc".chars().filter(|c| c.to_owned() != 'X');
|
|
|
|
|
|
|
|
"abc".chars().filter(|c| *c != 'X');
|
2018-10-10 02:25:03 +00:00
|
|
|
|
|
|
|
let x = &Baz;
|
|
|
|
let y = &Baz;
|
|
|
|
|
|
|
|
y.to_owned() == *x;
|
2018-10-10 11:51:06 +00:00
|
|
|
|
|
|
|
let x = &&Baz;
|
|
|
|
let y = &Baz;
|
|
|
|
|
|
|
|
y.to_owned() == **x;
|
2017-05-11 16:59:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl PartialEq for Foo {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.to_owned() == *other
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToOwned for Foo {
|
|
|
|
type Owned = Bar;
|
|
|
|
fn to_owned(&self) -> Bar {
|
|
|
|
Bar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq)]
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl PartialEq<Foo> for Bar {
|
|
|
|
fn eq(&self, _: &Foo) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::borrow::Borrow<Foo> for Bar {
|
|
|
|
fn borrow(&self) -> &Foo {
|
|
|
|
static FOO: Foo = Foo;
|
|
|
|
&FOO
|
|
|
|
}
|
2015-05-21 12:51:43 +00:00
|
|
|
}
|
2018-10-10 02:25:03 +00:00
|
|
|
|
|
|
|
#[derive(PartialEq)]
|
|
|
|
struct Baz;
|
|
|
|
|
|
|
|
impl ToOwned for Baz {
|
|
|
|
type Owned = Baz;
|
|
|
|
fn to_owned(&self) -> Baz {
|
|
|
|
Baz
|
|
|
|
}
|
|
|
|
}
|