2020-02-25 09:48:50 +00:00
|
|
|
// traits2.rs
|
2020-07-11 02:01:38 +00:00
|
|
|
//
|
2020-02-25 09:48:50 +00:00
|
|
|
// Your task is to implement the trait
|
|
|
|
// `AppendBar' for a vector of strings.
|
2020-07-11 02:01:38 +00:00
|
|
|
//
|
2020-02-25 09:48:50 +00:00
|
|
|
// To implement this trait, consider for
|
|
|
|
// a moment what it means to 'append "Bar"'
|
|
|
|
// to a vector of strings.
|
2020-07-11 02:01:38 +00:00
|
|
|
//
|
2020-02-25 09:48:50 +00:00
|
|
|
// No boiler plate code this time,
|
2020-02-25 11:00:09 +00:00
|
|
|
// you can do this!
|
2020-02-25 09:48:50 +00:00
|
|
|
|
|
|
|
// I AM NOT DONE
|
|
|
|
|
|
|
|
trait AppendBar {
|
|
|
|
fn append_bar(self) -> Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: Add your code here
|
|
|
|
|
|
|
|
#[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 11:00:09 +00:00
|
|
|
}
|