[][src]Struct ffmpeg_next::filter::graph::Graph

pub struct Graph { /* fields omitted */ }

Implementations

impl Graph[src]

pub unsafe fn wrap(ptr: *mut AVFilterGraph) -> Self[src]

pub unsafe fn as_ptr(&self) -> *const AVFilterGraph[src]

pub unsafe fn as_mut_ptr(&mut self) -> *mut AVFilterGraph[src]

impl Graph[src]

pub fn new() -> Self[src]

pub fn validate(&mut self) -> Result<(), Error>[src]

pub fn add<'a, 'b>(
    &'a mut self,
    filter: &Filter,
    name: &str,
    args: &str
) -> Result<Context<'b>, Error> where
    'a: 'b, 
[src]

pub fn get<'a, 'b>(&'b mut self, name: &str) -> Option<Context<'b>> where
    'a: 'b, 
[src]

pub fn dump(&self) -> String[src]

pub fn input(&mut self, name: &str, pad: usize) -> Result<Parser, Error>[src]

pub fn output(&mut self, name: &str, pad: usize) -> Result<Parser, Error>[src]

pub fn parse(&mut self, spec: &str) -> Result<(), Error>[src]

Trait Implementations

impl Default for Graph[src]

impl Drop for Graph[src]

impl Send for Graph[src]

impl Sync for Graph[src]

Auto Trait Implementations

impl RefUnwindSafe for Graph

impl Unpin for Graph

impl UnwindSafe for Graph

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.