Trait AggregatorExtManual

Source
pub trait AggregatorExtManual: IsA<Aggregator> + 'static {
    // Provided methods
    fn allocator(&self) -> (Option<Allocator>, AllocationParams) { ... }
    fn min_upstream_latency(&self) -> ClockTime { ... }
    fn set_min_upstream_latency(&self, min_upstream_latency: ClockTime) { ... }
    fn connect_min_upstream_latency_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn update_segment<F: FormattedValueIntrinsic>(
        &self,
        segment: &FormattedSegment<F>,
    ) { ... }
    fn set_position(&self, position: impl FormattedValue) { ... }
    fn selected_samples(
        &self,
        pts: impl Into<Option<ClockTime>>,
        dts: impl Into<Option<ClockTime>>,
        duration: impl Into<Option<ClockTime>>,
        info: Option<&StructureRef>,
    ) { ... }
    fn connect_samples_selected<F: Fn(&Self, &Segment, Option<ClockTime>, Option<ClockTime>, Option<ClockTime>, Option<&StructureRef>) + Send + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn src_pad(&self) -> &AggregatorPad { ... }
}

Provided Methods§

Source

fn allocator(&self) -> (Option<Allocator>, AllocationParams)

Source

fn min_upstream_latency(&self) -> ClockTime

Available on crate feature v1_16 only.
Source

fn set_min_upstream_latency(&self, min_upstream_latency: ClockTime)

Available on crate feature v1_16 only.
Source

fn connect_min_upstream_latency_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId

Available on crate feature v1_16 only.
Source

fn update_segment<F: FormattedValueIntrinsic>( &self, segment: &FormattedSegment<F>, )

Available on crate feature v1_18 only.
Source

fn set_position(&self, position: impl FormattedValue)

Source

fn selected_samples( &self, pts: impl Into<Option<ClockTime>>, dts: impl Into<Option<ClockTime>>, duration: impl Into<Option<ClockTime>>, info: Option<&StructureRef>, )

Available on crate feature v1_18 only.
Source

fn connect_samples_selected<F: Fn(&Self, &Segment, Option<ClockTime>, Option<ClockTime>, Option<ClockTime>, Option<&StructureRef>) + Send + 'static>( &self, f: F, ) -> SignalHandlerId

Available on crate feature v1_18 only.
Source

fn src_pad(&self) -> &AggregatorPad

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§