libyaml 0.2.0

High-level bindings for the LibYAML library
Documentation
use std::ffi;

/// Error returned from [`Event`] methods.
///
/// [`Event`]: enum.Event.html
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct EventError;

impl From<ffi::NulError> for EventError {
    fn from(_: ffi::NulError) -> Self {
        Self
    }
}