1
Fork 0

impls of traits cannot define methods on the anonymous trait

This commit is contained in:
Brian Anderson 2012-11-29 18:37:33 -08:00
parent 78ee821154
commit 3ed9fbd63c
23 changed files with 87 additions and 84 deletions

View file

@ -44,6 +44,9 @@ pub trait GenericPath {
pure fn with_filestem((&str)) -> self;
pure fn with_filetype((&str)) -> self;
pure fn dir_path() -> self;
pure fn file_path() -> self;
pure fn push((&str)) -> self;
pure fn push_rel((&self)) -> self;
pure fn push_many((&[~str])) -> self;