mirror of
https://github.com/ArthurDanjou/rustlings.git
synced 2026-02-04 21:57:49 +01:00
- Created empty solution files for various exercises in strings, modules, hashmaps, options, error handling, generics, traits, lifetimes, tests, iterators, smart pointers, threads, macros, clippy, conversions, and quizzes. - Each solution file contains a main function with a comment indicating that it will be automatically filled after completing the exercise. - Added a README.md file to provide information about the solutions and their purpose.
40 lines
757 B
Rust
40 lines
757 B
Rust
trait SomeTrait {
|
|
fn some_function(&self) -> bool {
|
|
true
|
|
}
|
|
}
|
|
|
|
trait OtherTrait {
|
|
fn other_function(&self) -> bool {
|
|
true
|
|
}
|
|
}
|
|
|
|
struct SomeStruct;
|
|
impl SomeTrait for SomeStruct {}
|
|
impl OtherTrait for SomeStruct {}
|
|
|
|
struct OtherStruct;
|
|
impl SomeTrait for OtherStruct {}
|
|
impl OtherTrait for OtherStruct {}
|
|
|
|
// TODO: Fix the compiler error by only changing the signature of this function.
|
|
fn some_func<T: SomeTrait + OtherTrait>(item: T) -> bool {
|
|
item.some_function() && item.other_function()
|
|
}
|
|
|
|
fn main() {
|
|
// You can optionally experiment here.
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_some_func() {
|
|
assert!(some_func(SomeStruct));
|
|
assert!(some_func(OtherStruct));
|
|
}
|
|
}
|