rustlings/exercises/15_traits/traits5.rs

34 lines
668 B
Rust
Raw Normal View History

2022-02-25 19:41:36 +03:00
// Your task is to replace the '??' sections so the code compiles.
//
2022-07-18 01:27:57 +03:00
// Don't change any line other than the marked one.
2022-02-25 19:41:36 +03:00
pub trait SomeTrait {
fn some_function(&self) -> bool {
true
}
}
pub trait OtherTrait {
fn other_function(&self) -> bool {
true
}
}
struct SomeStruct {}
struct OtherStruct {}
2022-02-25 19:41:36 +03:00
impl SomeTrait for SomeStruct {}
impl OtherTrait for SomeStruct {}
impl SomeTrait for OtherStruct {}
impl OtherTrait for OtherStruct {}
2022-02-25 19:41:36 +03:00
2022-07-18 01:27:57 +03:00
// YOU MAY ONLY CHANGE THE NEXT LINE
2022-02-25 19:41:36 +03:00
fn some_func(item: ??) -> bool {
item.some_function() && item.other_function()
}
fn main() {
some_func(SomeStruct {});
some_func(OtherStruct {});
}