Rust 2018 transition

This commit is contained in:
Anton Kochkov 2020-05-27 14:15:28 +08:00
parent 8743518b46
commit 5170d0374d
5 changed files with 22 additions and 22 deletions

View file

@ -1,7 +1,7 @@
use std::convert::From; use std::convert::From;
use std::error::Error; use std::error::Error;
use std::fmt::{self, Display}; use std::fmt::{self, Display};
use yaml::{Hash, Yaml}; use crate::yaml::{Hash, Yaml};
#[derive(Copy, Clone, Debug)] #[derive(Copy, Clone, Debug)]
pub enum EmitError { pub enum EmitError {
@ -17,7 +17,7 @@ impl Error for EmitError {
} }
} }
fn cause(&self) -> Option<&Error> { fn cause(&self) -> Option<&dyn Error> {
None None
} }
} }
@ -38,7 +38,7 @@ impl From<fmt::Error> for EmitError {
} }
pub struct YamlEmitter<'a> { pub struct YamlEmitter<'a> {
writer: &'a mut fmt::Write, writer: &'a mut dyn fmt::Write,
best_indent: usize, best_indent: usize,
compact: bool, compact: bool,
@ -48,7 +48,7 @@ pub struct YamlEmitter<'a> {
pub type EmitResult = Result<(), EmitError>; pub type EmitResult = Result<(), EmitError>;
// from serialize::json // from serialize::json
fn escape_str(wr: &mut fmt::Write, v: &str) -> Result<(), fmt::Error> { fn escape_str(wr: &mut dyn fmt::Write, v: &str) -> Result<(), fmt::Error> {
wr.write_str("\"")?; wr.write_str("\"")?;
let mut start = 0; let mut start = 0;
@ -111,7 +111,7 @@ fn escape_str(wr: &mut fmt::Write, v: &str) -> Result<(), fmt::Error> {
} }
impl<'a> YamlEmitter<'a> { impl<'a> YamlEmitter<'a> {
pub fn new(writer: &'a mut fmt::Write) -> YamlEmitter { pub fn new(writer: &'a mut dyn fmt::Write) -> YamlEmitter {
YamlEmitter { YamlEmitter {
writer, writer,
best_indent: 2, best_indent: 2,
@ -316,12 +316,12 @@ fn need_quotes(string: &str) -> bool {
| '\"' | '\"'
| '\'' | '\''
| '\\' | '\\'
| '\0'...'\x06' | '\0'..='\x06'
| '\t' | '\t'
| '\n' | '\n'
| '\r' | '\r'
| '\x0e'...'\x1a' | '\x0e'..='\x1a'
| '\x1c'...'\x1f' => true, | '\x1c'..='\x1f' => true,
_ => false, _ => false,
}) })
|| [ || [
@ -344,7 +344,7 @@ fn need_quotes(string: &str) -> bool {
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
use YamlLoader; use crate::YamlLoader;
#[test] #[test]
fn test_emit_simple() { fn test_emit_simple() {

View file

@ -52,10 +52,10 @@ pub mod scanner;
pub mod yaml; pub mod yaml;
// reexport key APIs // reexport key APIs
pub use emitter::{EmitError, YamlEmitter}; pub use crate::emitter::{EmitError, YamlEmitter};
pub use parser::Event; pub use crate::parser::Event;
pub use scanner::ScanError; pub use crate::scanner::ScanError;
pub use yaml::{Yaml, YamlLoader}; pub use crate::yaml::{Yaml, YamlLoader};
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {

View file

@ -1,4 +1,4 @@
use scanner::*; use crate::scanner::*;
use std::collections::HashMap; use std::collections::HashMap;
#[derive(Clone, Copy, PartialEq, Debug, Eq)] #[derive(Clone, Copy, PartialEq, Debug, Eq)]

View file

@ -67,7 +67,7 @@ impl Error for ScanError {
self.info.as_ref() self.info.as_ref()
} }
fn cause(&self) -> Option<&Error> { fn cause(&self) -> Option<&dyn Error> {
None None
} }
} }
@ -199,7 +199,7 @@ fn is_digit(c: char) -> bool {
#[inline] #[inline]
fn is_alpha(c: char) -> bool { fn is_alpha(c: char) -> bool {
match c { match c {
'0'...'9' | 'a'...'z' | 'A'...'Z' => true, '0'..='9' | 'a'..='z' | 'A'..='Z' => true,
'_' | '-' => true, '_' | '-' => true,
_ => false, _ => false,
} }
@ -211,9 +211,9 @@ fn is_hex(c: char) -> bool {
#[inline] #[inline]
fn as_hex(c: char) -> u32 { fn as_hex(c: char) -> u32 {
match c { match c {
'0'...'9' => (c as u32) - ('0' as u32), '0'..='9' => (c as u32) - ('0' as u32),
'a'...'f' => (c as u32) - ('a' as u32) + 10, 'a'..='f' => (c as u32) - ('a' as u32) + 10,
'A'...'F' => (c as u32) - ('A' as u32) + 10, 'A'..='F' => (c as u32) - ('A' as u32) + 10,
_ => unreachable!(), _ => unreachable!(),
} }
} }

View file

@ -1,6 +1,6 @@
use linked_hash_map::LinkedHashMap; use linked_hash_map::LinkedHashMap;
use parser::*; use crate::parser::*;
use scanner::{Marker, ScanError, TScalarStyle, TokenType}; use crate::scanner::{Marker, ScanError, TScalarStyle, TokenType};
use std::collections::BTreeMap; use std::collections::BTreeMap;
use std::f64; use std::f64;
use std::i64; use std::i64;
@ -368,7 +368,7 @@ impl Iterator for YamlIter {
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use std::f64; use std::f64;
use yaml::*; use crate::yaml::*;
#[test] #[test]
fn test_coerce() { fn test_coerce() {
let s = "--- let s = "---