2022-02-25 16:41:36 +00:00
|
|
|
// traits5.rs
|
|
|
|
//
|
|
|
|
// Your task is to replace the '??' sections so the code compiles.
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
2022-07-17 23:27:57 +01:00
|
|
|
// Don't change any line other than the marked one.
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint traits5` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2022-02-25 16:41:36 +00:00
|
|
|
|
|
|
|
// I AM NOT DONE
|
|
|
|
|
|
|
|
pub trait SomeTrait {
|
|
|
|
fn some_function(&self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait OtherTrait {
|
|
|
|
fn other_function(&self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-07 19:51:16 +01:00
|
|
|
struct SomeStruct {}
|
|
|
|
struct OtherStruct {}
|
2022-02-25 16:41:36 +00:00
|
|
|
|
|
|
|
impl SomeTrait for SomeStruct {}
|
|
|
|
impl OtherTrait for SomeStruct {}
|
2022-08-07 19:51:16 +01:00
|
|
|
impl SomeTrait for OtherStruct {}
|
|
|
|
impl OtherTrait for OtherStruct {}
|
2022-02-25 16:41:36 +00:00
|
|
|
|
2022-07-17 23:27:57 +01:00
|
|
|
// YOU MAY ONLY CHANGE THE NEXT LINE
|
2022-02-25 16:41:36 +00:00
|
|
|
fn some_func(item: ??) -> bool {
|
|
|
|
item.some_function() && item.other_function()
|
|
|
|
}
|
|
|
|
|
2022-08-07 19:51:16 +01:00
|
|
|
fn main() {
|
|
|
|
some_func(SomeStruct {});
|
|
|
|
some_func(OtherStruct {});
|
|
|
|
}
|