Enum mpv::SubApi [] [src]

#[repr(u32)]
pub enum SubApi { MPV_SUB_API_OPENGL_CB, NOTHING, }

Variants

Rust does not allow Enums with a single variant, hence we must add another value to the existing enum. Thus 'NOTHING' has no utility

Trait Implementations

impl Clone for SubApi
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SubApi
[src]