rustlings/exercises/traits/traits2.rs

36 lines
824 B
Rust
Raw Permalink Normal View History

2020-02-25 03:48:50 -06:00
// traits2.rs
//
2020-02-25 03:48:50 -06:00
// Your task is to implement the trait
2022-11-24 13:41:25 -06:00
// `AppendBar` for a vector of strings.
//
2020-02-25 03:48:50 -06:00
// To implement this trait, consider for
// a moment what it means to 'append "Bar"'
// to a vector of strings.
//
2020-02-25 03:48:50 -06:00
// No boiler plate code this time,
2020-02-25 05:00:09 -06:00
// you can do this!
2022-07-14 11:14:41 -05:00
// Execute `rustlings hint traits2` or use the `hint` watch subcommand for a hint.
2020-02-25 03:48:50 -06:00
trait AppendBar {
fn append_bar(self) -> Self;
}
2023-02-24 11:51:24 -06:00
impl AppendBar for Vec<String> {
fn append_bar(mut self) -> Vec<String> {
self.push(String::from("Bar"));
self
}
}
2020-02-25 03:48:50 -06:00
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn is_vec_pop_eq_bar() {
let mut foo = vec![String::from("Foo")].append_bar();
assert_eq!(foo.pop().unwrap(), String::from("Bar"));
assert_eq!(foo.pop().unwrap(), String::from("Foo"));
}
2020-02-25 05:00:09 -06:00
}