Struct gstreamer::PadBuilder [−][src]
pub struct PadBuilder<T>(_);
Implementations
pub fn proxy_pad_activate_function<F>(self, func: F) -> Self where
F: Fn(&ProxyPad, Option<&Object>) -> Result<(), LoggableError> + Send + Sync + 'static,
[src]pub fn proxy_pad_activatemode_function<F>(self, func: F) -> Self where
F: Fn(&ProxyPad, Option<&Object>, PadMode, bool) -> Result<(), LoggableError> + Send + Sync + 'static,
[src]pub fn proxy_pad_chain_function<F>(self, func: F) -> Self where
F: Fn(&ProxyPad, Option<&Object>, Buffer) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static,
[src]pub fn proxy_pad_chain_list_function<F>(self, func: F) -> Self where
F: Fn(&ProxyPad, Option<&Object>, BufferList) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static,
[src]pub fn proxy_pad_event_function<F>(self, func: F) -> Self where
F: Fn(&ProxyPad, Option<&Object>, Event) -> bool + Send + Sync + 'static,
[src]pub fn proxy_pad_event_full_function<F>(self, func: F) -> Self where
F: Fn(&ProxyPad, Option<&Object>, Event) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static,
[src]pub fn proxy_pad_getrange_function<F>(self, func: F) -> Self where
F: Fn(&ProxyPad, Option<&Object>, u64, Option<&mut BufferRef>, u32) -> Result<PadGetRangeSuccess, FlowError> + Send + Sync + 'static,
[src]pub fn proxy_pad_iterate_internal_links_function<F>(self, func: F) -> Self where
F: Fn(&ProxyPad, Option<&Object>) -> Iterator<Pad> + Send + Sync + 'static,
[src]pub fn proxy_pad_link_function<F>(self, func: F) -> Self where
F: Fn(&ProxyPad, Option<&Object>, &Pad) -> Result<PadLinkSuccess, PadLinkError> + Send + Sync + 'static,
[src]pub fn proxy_pad_query_function<F>(self, func: F) -> Self where
F: Fn(&ProxyPad, Option<&Object>, &mut QueryRef) -> bool + Send + Sync + 'static,
[src]pub fn activate_function<F>(self, func: F) -> Self where
F: Fn(&T, Option<&Object>) -> Result<(), LoggableError> + Send + Sync + 'static,
[src]pub fn activatemode_function<F>(self, func: F) -> Self where
F: Fn(&T, Option<&Object>, PadMode, bool) -> Result<(), LoggableError> + Send + Sync + 'static,
[src]pub fn chain_function<F>(self, func: F) -> Self where
F: Fn(&T, Option<&Object>, Buffer) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static,
[src]pub fn chain_list_function<F>(self, func: F) -> Self where
F: Fn(&T, Option<&Object>, BufferList) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static,
[src]pub fn event_function<F>(self, func: F) -> Self where
F: Fn(&T, Option<&Object>, Event) -> bool + Send + Sync + 'static,
[src]pub fn event_full_function<F>(self, func: F) -> Self where
F: Fn(&T, Option<&Object>, Event) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static,
[src]pub fn getrange_function<F>(self, func: F) -> Self where
F: Fn(&T, Option<&Object>, u64, Option<&mut BufferRef>, u32) -> Result<PadGetRangeSuccess, FlowError> + Send + Sync + 'static,
[src]pub fn iterate_internal_links_function<F>(self, func: F) -> Self where
F: Fn(&T, Option<&Object>) -> Iterator<Pad> + Send + Sync + 'static,
[src]pub fn link_function<F>(self, func: F) -> Self where
F: Fn(&T, Option<&Object>, &Pad) -> Result<PadLinkSuccess, PadLinkError> + Send + Sync + 'static,
[src]pub fn query_function<F>(self, func: F) -> Self where
F: Fn(&T, Option<&Object>, &mut QueryRef) -> bool + Send + Sync + 'static,
[src]Auto Trait Implementations
impl<T> RefUnwindSafe for PadBuilder<T> where
T: RefUnwindSafe,
impl<T> Send for PadBuilder<T> where
T: Send,
impl<T> Sync for PadBuilder<T> where
T: Sync,
impl<T> Unpin for PadBuilder<T> where
T: Unpin,
impl<T> UnwindSafe for PadBuilder<T> where
T: UnwindSafe,