rustlings/exercises/traits/traits5.rs

40 lines
801 B
Rust
Raw Normal View History

2022-02-25 16:41:36 +00:00
// traits5.rs
//
// Your task is to replace the '??' sections so the code compiles.
//
2022-07-17 22:27:57 +00:00
// Don't change any line other than the marked one.
//
// Execute `rustlings hint traits5` or use the `hint` watch subcommand for a
// hint.
2022-02-25 16:41:36 +00: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 16:41:36 +00:00
impl SomeTrait for SomeStruct {}
impl OtherTrait for SomeStruct {}
impl SomeTrait for OtherStruct {}
impl OtherTrait for OtherStruct {}
2022-02-25 16:41:36 +00:00
2022-07-17 22:27:57 +00:00
// YOU MAY ONLY CHANGE THE NEXT LINE
2024-05-11 17:44:39 +00:00
fn some_func<T: SomeTrait + OtherTrait>(item: T) -> bool {
2022-02-25 16:41:36 +00:00
item.some_function() && item.other_function()
}
fn main() {
some_func(SomeStruct {});
some_func(OtherStruct {});
}