Struct yaml_rust2::yaml::YamlDecoder
source · pub struct YamlDecoder<T: Read> { /* private fields */ }
Expand description
YamlDecoder
is a YamlLoader
builder that allows you to supply your own encoding error trap.
For example, to read a YAML file while ignoring Unicode decoding errors you can set the
encoding_trap
to encoding::DecoderTrap::Ignore
.
use yaml_rust2::yaml::{YamlDecoder, YAMLDecodingTrap};
let string = b"---
a\xa9: 1
b: 2.2
c: [1, 2]
";
let out = YamlDecoder::read(string as &[u8])
.encoding_trap(YAMLDecodingTrap::Ignore)
.decode()
.unwrap();
Implementations§
source§impl<T: Read> YamlDecoder<T>
impl<T: Read> YamlDecoder<T>
sourcepub fn read(source: T) -> YamlDecoder<T>
pub fn read(source: T) -> YamlDecoder<T>
Create a YamlDecoder
decoding the given source.
sourcepub fn encoding_trap(&mut self, trap: YAMLDecodingTrap) -> &mut Self
pub fn encoding_trap(&mut self, trap: YAMLDecodingTrap) -> &mut Self
Set the behavior of the decoder when the encoding is invalid.
Auto Trait Implementations§
impl<T> Freeze for YamlDecoder<T>where
T: Freeze,
impl<T> RefUnwindSafe for YamlDecoder<T>where
T: RefUnwindSafe,
impl<T> Send for YamlDecoder<T>where
T: Send,
impl<T> Sync for YamlDecoder<T>where
T: Sync,
impl<T> Unpin for YamlDecoder<T>where
T: Unpin,
impl<T> UnwindSafe for YamlDecoder<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more