x264-next 0.4.1

A fork of the unmaintained `x264` crate.
Documentation
1
2
3
4
5
6
7
8
use core::result;

#[derive(Copy, Clone, Hash, Debug, PartialEq, Eq)]
/// Indicates that something bad happened.
pub struct Error;

/// A specialized Result type for video encoding operations.
pub type Result<T> = result::Result<T, Error>;