Enum gstreamer::ClockReturn
source · #[repr(i32)]pub enum ClockReturn {
Ok = 0,
Early = 1,
Unscheduled = 2,
Busy = 3,
Badtime = 4,
Error = 5,
Unsupported = 6,
Done = 7,
}
Expand description
The return value of a clock operation.
Variants§
Ok = 0
The operation succeeded.
Early = 1
The operation was scheduled too late.
Unscheduled = 2
The clockID was unscheduled
Busy = 3
The ClockID is busy
Badtime = 4
A bad time was provided to a function.
Error = 5
An error occurred
Unsupported = 6
Operation is not supported
Done = 7
The ClockID is done waiting
Implementations§
source§impl ClockReturn
impl ClockReturn
pub fn into_result(self) -> Result<ClockSuccess, ClockError>
pub fn from_error(v: ClockError) -> Self
pub fn from_ok(v: ClockSuccess) -> Self
Trait Implementations§
source§impl Clone for ClockReturn
impl Clone for ClockReturn
source§fn clone(&self) -> ClockReturn
fn clone(&self) -> ClockReturn
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ClockReturn
impl Debug for ClockReturn
source§impl From<ClockError> for ClockReturn
impl From<ClockError> for ClockReturn
source§fn from(value: ClockError) -> Self
fn from(value: ClockError) -> Self
Converts to this type from the input type.
source§impl From<ClockReturn> for Value
impl From<ClockReturn> for Value
source§fn from(v: ClockReturn) -> Self
fn from(v: ClockReturn) -> Self
Converts to this type from the input type.
source§impl From<ClockSuccess> for ClockReturn
impl From<ClockSuccess> for ClockReturn
source§fn from(value: ClockSuccess) -> Self
fn from(value: ClockSuccess) -> Self
Converts to this type from the input type.
source§impl From<Result<ClockSuccess, ClockError>> for ClockReturn
impl From<Result<ClockSuccess, ClockError>> for ClockReturn
source§fn from(res: Result<ClockSuccess, ClockError>) -> Self
fn from(res: Result<ClockSuccess, ClockError>) -> Self
Converts to this type from the input type.
source§impl<'a> FromValue<'a> for ClockReturn
impl<'a> FromValue<'a> for ClockReturn
§type Checker = GenericValueTypeChecker<ClockReturn>
type Checker = GenericValueTypeChecker<ClockReturn>
Value type checker.
source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a
Value
. Read moresource§impl HasParamSpec for ClockReturn
impl HasParamSpec for ClockReturn
type ParamSpec = ParamSpecEnum
§type SetValue = ClockReturn
type SetValue = ClockReturn
Preferred value to be used as setter for the associated ParamSpec.
type BuilderFn = fn(_: &str, _: ClockReturn) -> ParamSpecEnumBuilder<'_, ClockReturn>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for ClockReturn
impl Hash for ClockReturn
source§impl Ord for ClockReturn
impl Ord for ClockReturn
source§fn cmp(&self, other: &ClockReturn) -> Ordering
fn cmp(&self, other: &ClockReturn) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ClockReturn
impl PartialEq for ClockReturn
source§impl PartialOrd for ClockReturn
impl PartialOrd for ClockReturn
source§impl StaticType for ClockReturn
impl StaticType for ClockReturn
source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.source§impl ToValue for ClockReturn
impl ToValue for ClockReturn
source§impl ValueType for ClockReturn
impl ValueType for ClockReturn
§type Type = ClockReturn
type Type = ClockReturn
Type to get the
Type
from. Read moreimpl Copy for ClockReturn
impl Eq for ClockReturn
impl StructuralPartialEq for ClockReturn
Auto Trait Implementations§
impl Freeze for ClockReturn
impl RefUnwindSafe for ClockReturn
impl Send for ClockReturn
impl Sync for ClockReturn
impl Unpin for ClockReturn
impl UnwindSafe for ClockReturn
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> PropertyGet for Twhere
T: HasParamSpec,
impl<T> PropertyGet for Twhere
T: HasParamSpec,
source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
source§fn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.
source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.