2024-11-02 14:24:22 +00:00
|
|
|
trait AppendBar {
|
|
|
|
fn append_bar(self) -> Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AppendBar for Vec<String> {
|
|
|
|
fn append_bar(mut self) -> Self {
|
|
|
|
// ^^^ this is important
|
|
|
|
self.push(String::from("Bar"));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-28 20:46:17 +00:00
|
|
|
fn main() {
|
2024-11-02 14:24:22 +00:00
|
|
|
// You can optionally experiment 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(), "Bar");
|
|
|
|
assert_eq!(foo.pop().unwrap(), "Foo");
|
|
|
|
}
|
2024-10-28 20:46:17 +00:00
|
|
|
}
|