From 082af307b42e1323fc981d1317e667f8e2345fe5 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Wed, 16 Jul 2014 06:20:43 +0200 Subject: [PATCH] ToStr::to_str -> ToString::to_string --- src/file.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/file.rs b/src/file.rs index e7d12c2..75c179b 100644 --- a/src/file.rs +++ b/src/file.rs @@ -109,13 +109,13 @@ impl<'a> File<'a> { // the time. HardLinks => { let style = if self.stat.kind == io::TypeFile && self.stat.unstable.nlink > 1 { Red.on(Yellow) } else { Red.normal() }; - style.paint(self.stat.unstable.nlink.to_str().as_slice()) + style.paint(self.stat.unstable.nlink.to_string().as_slice()) }, - Inode => Purple.paint(self.stat.unstable.inode.to_str().as_slice()), + Inode => Purple.paint(self.stat.unstable.inode.to_string().as_slice()), Blocks => { if self.stat.kind == io::TypeFile || self.stat.kind == io::TypeSymlink { - Cyan.paint(self.stat.unstable.blocks.to_str().as_slice()) + Cyan.paint(self.stat.unstable.blocks.to_string().as_slice()) } else { Grey.paint("-") @@ -128,13 +128,13 @@ impl<'a> File<'a> { let uid = self.stat.unstable.uid as u32; unix.load_user(uid); let style = if unix.uid == uid { Yellow.bold() } else { Plain }; - let string = unix.get_user_name(uid).unwrap_or(uid.to_str()); + let string = unix.get_user_name(uid).unwrap_or(uid.to_string()); style.paint(string.as_slice()) }, Group => { let gid = self.stat.unstable.gid as u32; unix.load_group(gid); - let name = unix.get_group_name(gid).unwrap_or(gid.to_str()); + let name = unix.get_group_name(gid).unwrap_or(gid.to_string()); let style = if unix.is_group_member(gid) { Yellow.normal() } else { Plain }; style.paint(name.as_slice()) },