vapoursynth 0.1.2

Safe Rust wrapper for VapourSynth and VSScript.
Documentation
1
2
3
4
5
6
7
8
9
10
/// An enumeration of all possible value types.
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub enum ValueType {
    Int,
    Float,
    Data,
    Node,
    Frame,
    Function,
}