// Copyright 2013 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. struct Dog { name : StrBuf } trait Barks { fn bark(&self) -> StrBuf; } impl Barks for Dog { fn bark(&self) -> StrBuf { return format!("woof! (I'm {})", self.name).to_strbuf(); } } pub fn main() { let snoopy = box Dog{name: "snoopy".to_strbuf()}; let bubbles = box Dog{name: "bubbles".to_strbuf()}; let barker = [snoopy as Box, bubbles as Box]; for pup in barker.iter() { println!("{}", pup.bark()); } }