Enum mpv::SubApi [] [src]

pub enum SubApi {
    MPV_SUB_API_OPENGL_CB,
    NOTHING,
}

Variants

MPV_SUB_API_OPENGL_CBNOTHING

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 Copy for SubApi
[src]

impl Clone for SubApi
[src]

fn clone(&self) -> SubApi

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more