Enum gstreamer::BusSyncReply
source · #[repr(i32)]pub enum BusSyncReply {
Drop = 0,
Pass = 1,
Async = 2,
}
Expand description
The result values for a GstBusSyncHandler.
Variants§
Drop = 0
drop the message
Pass = 1
pass the message to the async queue
Async = 2
pass message to async queue, continue if message is handled
Trait Implementations§
source§impl Clone for BusSyncReply
impl Clone for BusSyncReply
source§fn clone(&self) -> BusSyncReply
fn clone(&self) -> BusSyncReply
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 BusSyncReply
impl Debug for BusSyncReply
source§impl From<BusSyncReply> for Value
impl From<BusSyncReply> for Value
source§fn from(v: BusSyncReply) -> Self
fn from(v: BusSyncReply) -> Self
Converts to this type from the input type.
source§impl<'a> FromValue<'a> for BusSyncReply
impl<'a> FromValue<'a> for BusSyncReply
§type Checker = GenericValueTypeChecker<BusSyncReply>
type Checker = GenericValueTypeChecker<BusSyncReply>
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 BusSyncReply
impl HasParamSpec for BusSyncReply
type ParamSpec = ParamSpecEnum
§type SetValue = BusSyncReply
type SetValue = BusSyncReply
Preferred value to be used as setter for the associated ParamSpec.
type BuilderFn = fn(_: &str, _: BusSyncReply) -> ParamSpecEnumBuilder<'_, BusSyncReply>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for BusSyncReply
impl Hash for BusSyncReply
source§impl Ord for BusSyncReply
impl Ord for BusSyncReply
source§fn cmp(&self, other: &BusSyncReply) -> Ordering
fn cmp(&self, other: &BusSyncReply) -> 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 BusSyncReply
impl PartialEq for BusSyncReply
source§impl PartialOrd for BusSyncReply
impl PartialOrd for BusSyncReply
source§impl StaticType for BusSyncReply
impl StaticType for BusSyncReply
source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.source§impl ToValue for BusSyncReply
impl ToValue for BusSyncReply
source§impl ValueType for BusSyncReply
impl ValueType for BusSyncReply
§type Type = BusSyncReply
type Type = BusSyncReply
Type to get the
Type
from. Read moreimpl Copy for BusSyncReply
impl Eq for BusSyncReply
impl StructuralPartialEq for BusSyncReply
Auto Trait Implementations§
impl Freeze for BusSyncReply
impl RefUnwindSafe for BusSyncReply
impl Send for BusSyncReply
impl Sync for BusSyncReply
impl Unpin for BusSyncReply
impl UnwindSafe for BusSyncReply
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
.