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§
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
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.