mirror of
https://github.com/notohh/rustlings.git
synced 2025-07-19 21:05:34 -04:00
feat: add traits5.rs exercise
This commit is contained in:
parent
599d634ee2
commit
63b0c7e399
2 changed files with 42 additions and 0 deletions
exercises/traits
31
exercises/traits/traits5.rs
Normal file
31
exercises/traits/traits5.rs
Normal file
|
@ -0,0 +1,31 @@
|
|||
// traits5.rs
|
||||
//
|
||||
// Your task is to replace the '??' sections so the code compiles.
|
||||
// Don't change any line other than 27.
|
||||
|
||||
// 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 {}
|
||||
|
||||
fn some_func(item: ??) -> bool {
|
||||
item.some_function() && item.other_function()
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Add table
Add a link
Reference in a new issue