Struct gstreamer::SingleShotClockId [−][src]
pub struct SingleShotClockId(_);
Implementations
impl SingleShotClockId
[src]
impl SingleShotClockId
[src]pub fn compare_by_time(&self, other: &Self) -> Ordering
[src]
pub fn wait_async<F>(&self, func: F) -> Result<ClockSuccess, ClockError> where
F: FnOnce(&Clock, ClockTime, &ClockId) + Send + 'static,
[src]
F: FnOnce(&Clock, ClockTime, &ClockId) + Send + 'static,
pub fn wait_async_future(
&self
) -> Result<Pin<Box<dyn Future<Output = Result<(ClockTime, ClockId), ClockError>> + Send + 'static>>, ClockError>
[src]
&self
) -> Result<Pin<Box<dyn Future<Output = Result<(ClockTime, ClockId), ClockError>> + Send + 'static>>, ClockError>
Methods from Deref<Target = ClockId>
pub fn time(&self) -> ClockTime
[src]
pub fn unschedule(&self)
[src]
pub fn wait(&self) -> (Result<ClockSuccess, ClockError>, ClockTimeDiff)
[src]
pub fn compare_by_time(&self, other: &Self) -> Ordering
[src]
pub fn clock(&self) -> Option<Clock>
[src]
This is supported on crate feature
v1_16
only.pub fn uses_clock<P: IsA<Clock>>(&self, clock: &P) -> bool
[src]
This is supported on crate feature
v1_16
only.pub fn type_(&self) -> ClockEntryType
[src]
pub fn status(&self) -> &AtomicClockReturn
[src]
Trait Implementations
impl Clone for SingleShotClockId
[src]
impl Clone for SingleShotClockId
[src]fn clone(&self) -> SingleShotClockId
[src]
fn clone(&self) -> SingleShotClockId
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for SingleShotClockId
[src]
impl Debug for SingleShotClockId
[src]impl Deref for SingleShotClockId
[src]
impl Deref for SingleShotClockId
[src]impl From<SingleShotClockId> for ClockId
[src]
impl From<SingleShotClockId> for ClockId
[src]fn from(id: SingleShotClockId) -> ClockId
[src]
fn from(id: SingleShotClockId) -> ClockId
[src]Performs the conversion.
impl Hash for SingleShotClockId
[src]
impl Hash for SingleShotClockId
[src]impl Ord for SingleShotClockId
[src]
impl Ord for SingleShotClockId
[src]impl PartialEq<SingleShotClockId> for SingleShotClockId
[src]
impl PartialEq<SingleShotClockId> for SingleShotClockId
[src]fn eq(&self, other: &SingleShotClockId) -> bool
[src]
fn eq(&self, other: &SingleShotClockId) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &SingleShotClockId) -> bool
[src]
fn ne(&self, other: &SingleShotClockId) -> bool
[src]This method tests for !=
.
impl PartialOrd<SingleShotClockId> for SingleShotClockId
[src]
impl PartialOrd<SingleShotClockId> for SingleShotClockId
[src]fn partial_cmp(&self, other: &SingleShotClockId) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &SingleShotClockId) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl TryFrom<ClockId> for SingleShotClockId
[src]
impl TryFrom<ClockId> for SingleShotClockId
[src]impl Eq for SingleShotClockId
[src]
impl StructuralEq for SingleShotClockId
[src]
impl StructuralPartialEq for SingleShotClockId
[src]
Auto Trait Implementations
impl RefUnwindSafe for SingleShotClockId
impl Send for SingleShotClockId
impl Sync for SingleShotClockId
impl Unpin for SingleShotClockId
impl UnwindSafe for SingleShotClockId
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more