Trait gstreamer::subclass::prelude::ClockImplExt
source · pub trait ClockImplExt: Sealed + ObjectSubclass {
// Required method
fn parent_change_resolution(
&self,
old_resolution: ClockTime,
new_resolution: ClockTime,
) -> ClockTime;
// Provided methods
fn parent_resolution(&self) -> ClockTime { ... }
fn parent_internal_time(&self) -> ClockTime { ... }
fn parent_wait(
&self,
id: &ClockId,
) -> (Result<ClockSuccess, ClockError>, ClockTimeDiff) { ... }
fn parent_wait_async(
&self,
id: &ClockId,
) -> Result<ClockSuccess, ClockError> { ... }
fn parent_unschedule(&self, id: &ClockId) { ... }
fn wake_id(&self, id: &ClockId) { ... }
}
Required Methods§
fn parent_change_resolution( &self, old_resolution: ClockTime, new_resolution: ClockTime, ) -> ClockTime
Provided Methods§
fn parent_resolution(&self) -> ClockTime
fn parent_internal_time(&self) -> ClockTime
fn parent_wait( &self, id: &ClockId, ) -> (Result<ClockSuccess, ClockError>, ClockTimeDiff)
fn parent_wait_async(&self, id: &ClockId) -> Result<ClockSuccess, ClockError>
fn parent_unschedule(&self, id: &ClockId)
fn wake_id(&self, id: &ClockId)
Object Safety§
This trait is not object safe.