1use core::result; 2 3#[derive(Copy, Clone, Hash, Debug, PartialEq, Eq)] 4/// Indicates that something bad happened. 5pub struct Error; 6 7/// A specialized Result type for video encoding operations. 8pub type Result<T> = result::Result<T, Error>;