pub trait AggregatorExtManual: Sealed + 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

Object Safety§

This trait is not object safe.

Implementors§