Merge pull request #19 from Stebalien/replace-as_slice

Get rid of explicit `as_slice()` calls
This commit is contained in:
Ben S 2015-02-22 23:50:38 +00:00
commit ae39d0f8a7
6 changed files with 16 additions and 16 deletions

View File

@ -70,8 +70,8 @@ impl Alignment {
/// string is not as simple as just getting its length. /// string is not as simple as just getting its length.
pub fn pad_string(&self, string: &String, padding: usize) -> String { pub fn pad_string(&self, string: &String, padding: usize) -> String {
match *self { match *self {
Alignment::Left => format!("{}{}", string, spaces(padding).as_slice()), Alignment::Left => format!("{}{}", string, spaces(padding)),
Alignment::Right => format!("{}{}", spaces(padding), string.as_slice()), Alignment::Right => format!("{}{}", spaces(padding), string),
} }
} }
} }

View File

@ -81,19 +81,19 @@ impl<'a> File<'a> {
dir: parent, dir: parent,
stat: stat, stat: stat,
name: filename.to_string(), name: filename.to_string(),
ext: ext(filename.as_slice()), ext: ext(&filename),
this: this, this: this,
} }
} }
/// Whether this file is a dotfile or not. /// Whether this file is a dotfile or not.
pub fn is_dotfile(&self) -> bool { pub fn is_dotfile(&self) -> bool {
self.name.as_slice().starts_with(".") self.name.starts_with(".")
} }
/// Whether this file is a temporary file or not. /// Whether this file is a temporary file or not.
pub fn is_tmpfile(&self) -> bool { pub fn is_tmpfile(&self) -> bool {
let name = self.name.as_slice(); let name = &self.name;
name.ends_with("~") || (name.starts_with("#") && name.ends_with("#")) name.ends_with("~") || (name.starts_with("#") && name.ends_with("#"))
} }
@ -150,11 +150,11 @@ impl<'a> File<'a> {
GREY.paint("=>"), GREY.paint("=>"),
Cyan.paint(target_path.dirname_str().unwrap()), Cyan.paint(target_path.dirname_str().unwrap()),
Cyan.paint("/"), Cyan.paint("/"),
file.file_colour().paint(file.name.as_slice())), file.file_colour().paint(&file.name)),
Err(filename) => format!("{} {} {}", Err(filename) => format!("{} {} {}",
style.paint(name), style.paint(name),
Red.paint("=>"), Red.paint("=>"),
Red.underline().paint(filename.as_slice())), Red.underline().paint(&filename)),
} }
} }
else { else {
@ -173,7 +173,7 @@ impl<'a> File<'a> {
/// characters are 1 columns wide, but in some contexts, certain /// characters are 1 columns wide, but in some contexts, certain
/// characters are actually 2 columns wide. /// characters are actually 2 columns wide.
pub fn file_name_width(&self) -> usize { pub fn file_name_width(&self) -> usize {
self.name.as_slice().width(false) self.name.width(false)
} }
/// Assuming the current file is a symlink, follows the link and /// Assuming the current file is a symlink, follows the link and
@ -193,7 +193,7 @@ impl<'a> File<'a> {
dir: self.dir, dir: self.dir,
stat: stat, stat: stat,
name: filename.to_string(), name: filename.to_string(),
ext: ext(filename.as_slice()), ext: ext(&filename),
this: None, this: None,
}) })
} }
@ -322,7 +322,7 @@ impl<'a> File<'a> {
DateFormat::parse("{2>:D} {:M} {5>:Y}").unwrap() DateFormat::parse("{2>:D} {:M} {5>:Y}").unwrap()
}; };
Cell::paint(Blue.normal(), format.format(date, locale).as_slice()) Cell::paint(Blue.normal(), &format.format(date, locale))
} }
/// This file's type, represented by a coloured character. /// This file's type, represented by a coloured character.
@ -388,7 +388,7 @@ impl<'a> File<'a> {
/// valid without `foo.coffee`. /// valid without `foo.coffee`.
pub fn get_source_files(&self) -> Vec<Path> { pub fn get_source_files(&self) -> Vec<Path> {
if let Some(ref ext) = self.ext { if let Some(ref ext) = self.ext {
match ext.as_slice() { match &ext[..] {
"class" => vec![self.path.with_extension("java")], // Java "class" => vec![self.path.with_extension("java")], // Java
"css" => vec![self.path.with_extension("sass"), self.path.with_extension("less")], // SASS, Less "css" => vec![self.path.with_extension("sass"), self.path.with_extension("less")], // SASS, Less
"elc" => vec![self.path.with_extension("el")], // Emacs Lisp "elc" => vec![self.path.with_extension("el")], // Emacs Lisp

View File

@ -83,7 +83,7 @@ pub trait HasType {
impl<'a> HasType for File<'a> { impl<'a> HasType for File<'a> {
fn get_type(&self) -> FileType { fn get_type(&self) -> FileType {
let name = self.name.as_slice(); let name = &self.name[..];
if self.stat.kind == io::FileType::Directory { if self.stat.kind == io::FileType::Directory {
return Directory; return Directory;
} }

View File

@ -148,7 +148,7 @@ impl SortField {
/// Find which field to use based on a user-supplied word. /// Find which field to use based on a user-supplied word.
fn from_word(word: String) -> Result<SortField, Misfire> { fn from_word(word: String) -> Result<SortField, Misfire> {
match word.as_slice() { match &word[..] {
"name" | "filename" => Ok(SortField::Name), "name" | "filename" => Ok(SortField::Name),
"size" | "filesize" => Ok(SortField::Size), "size" | "filesize" => Ok(SortField::Size),
"ext" | "extension" => Ok(SortField::Extension), "ext" | "extension" => Ok(SortField::Extension),
@ -342,7 +342,7 @@ impl TimeTypes {
return Err(Misfire::Useless("accessed", true, "time")); return Err(Misfire::Useless("accessed", true, "time"));
} }
match word.as_slice() { match &word[..] {
"mod" | "modified" => Ok(TimeTypes { accessed: false, modified: true, created: false }), "mod" | "modified" => Ok(TimeTypes { accessed: false, modified: true, created: false }),
"acc" | "accessed" => Ok(TimeTypes { accessed: true, modified: false, created: false }), "acc" | "accessed" => Ok(TimeTypes { accessed: true, modified: false, created: false }),
"cr" | "created" => Ok(TimeTypes { accessed: false, modified: false, created: true }), "cr" | "created" => Ok(TimeTypes { accessed: false, modified: false, created: true }),

View File

@ -92,7 +92,7 @@ impl Details {
if let Some(ref dir) = file.this { if let Some(ref dir) = file.this {
let mut files = dir.files(true); let mut files = dir.files(true);
self.filter.transform_files(&mut files); self.filter.transform_files(&mut files);
self.get_files(columns, cache, locale, dest, files.as_slice(), depth + 1); self.get_files(columns, cache, locale, dest, &files, depth + 1);
} }
} }
} }

View File

@ -81,7 +81,7 @@ impl Grid {
} }
let ref file = files[num]; let ref file = files[num];
let styled_name = file.file_colour().paint(file.name.as_slice()).to_string(); let styled_name = file.file_colour().paint(&file.name).to_string();
if x == widths.len() - 1 { if x == widths.len() - 1 {
// The final column doesn't need to have trailing spaces // The final column doesn't need to have trailing spaces
print!("{}", styled_name); print!("{}", styled_name);