rustlings/exercises/traits/traits5.rs

34 lines
649 B
Rust
Raw Normal View History

2022-02-25 10:41:36 -06:00
// traits5.rs
//
// Your task is to replace the '??' sections so the code compiles.
2022-07-17 17:27:57 -05:00
// Don't change any line other than the marked one.
2022-07-15 07:14:48 -05:00
// Execute `rustlings hint traits5` or use the `hint` watch subcommand for a hint.
2022-02-25 10:41:36 -06:00
// I AM NOT DONE
pub trait SomeTrait {
fn some_function(&self) -> bool {
true
}
}
pub trait OtherTrait {
fn other_function(&self) -> bool {
true
}
}
struct SomeStruct {
name: String,
}
impl SomeTrait for SomeStruct {}
impl OtherTrait for SomeStruct {}
2022-07-17 17:27:57 -05:00
// YOU MAY ONLY CHANGE THE NEXT LINE
2022-02-25 10:41:36 -06:00
fn some_func(item: ??) -> bool {
item.some_function() && item.other_function()
}
fn main() {}