fix(rustup): update FromStr

Signed-off-by: Peter Atashian <retep998@gmail.com>
This commit is contained in:
Peter Atashian
2015-02-03 17:14:11 -05:00
committed by Sean McArthur
parent c983ebf3ce
commit 742081c8cf
18 changed files with 90 additions and 79 deletions

View File

@@ -34,8 +34,9 @@ impl HeaderFormat for LastModified {
}
impl FromStr for LastModified {
fn from_str(s: &str) -> Option<LastModified> {
tm_from_str(s).map(LastModified)
type Err = ();
fn from_str(s: &str) -> Result<LastModified, ()> {
tm_from_str(s).map(LastModified).ok_or(())
}
}