Skip to main content

Ret

Type Alias Ret 

Source
pub type Ret = Result<c_int, c_int>;
Expand description

A wrapper around c_int(return type of many ffmpeg inner libraries functions)

Aliased Type§

pub enum Ret {
    Ok(i32),
    Err(i32),
}

Variants§

§1.0.0

Ok(i32)

Contains the success value

§1.0.0

Err(i32)

Contains the error value