From 26a8e0c20cc1a300f8d03e152c9910839ce1cd53 Mon Sep 17 00:00:00 2001 From: James Ravenscroft Date: Fri, 26 Dec 2014 13:28:56 +0000 Subject: Put examples back to how they were before and removed some into_string deprecated calls --- src/ident.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/ident.rs') diff --git a/src/ident.rs b/src/ident.rs index 19756ca..6a01d12 100644 --- a/src/ident.rs +++ b/src/ident.rs @@ -1,4 +1,5 @@ use regex::Regex; +use std::borrow::ToOwned; static PATTERN: Regex = regex!(":(.*)!(.*)@(.*)"); @@ -16,9 +17,9 @@ impl Ident { None => return None }; Some(Ident { - nickname: c.at(1).unwrap().into_string(), - user: c.at(2).unwrap().into_string(), - host: c.at(3).unwrap().into_string() + nickname: c.at(1).unwrap().to_owned(), + user: c.at(2).unwrap().to_owned(), + host: c.at(3).unwrap().to_owned() }) } } -- cgit v1.2.3