Enum gstreamer::EventType [−][src]
pub enum EventType { Unknown, FlushStart, FlushStop, StreamStart, Caps, Segment, StreamCollection, Tag, Buffersize, SinkMessage, StreamGroupDone, Eos, Toc, Protection, SegmentDone, Gap, Qos, Seek, Navigation, Latency, Step, Reconfigure, TocSelect, SelectStreams, CustomUpstream, CustomDownstream, CustomDownstreamOob, CustomDownstreamSticky, CustomBoth, CustomBothOob, // some variants omitted }
Variants
Unknown
FlushStart
FlushStop
StreamStart
Caps
Segment
StreamCollection
Tag
Buffersize
SinkMessage
StreamGroupDone
Eos
Toc
Protection
SegmentDone
Gap
Qos
Seek
Latency
Step
Reconfigure
TocSelect
SelectStreams
CustomUpstream
CustomDownstream
CustomDownstreamOob
CustomDownstreamSticky
CustomBoth
CustomBothOob
Methods
impl EventType
[src]
impl EventType
pub fn is_upstream(self) -> bool
[src]
pub fn is_upstream(self) -> bool
pub fn is_downstream(self) -> bool
[src]
pub fn is_downstream(self) -> bool
pub fn is_serialized(self) -> bool
[src]
pub fn is_serialized(self) -> bool
pub fn is_sticky(self) -> bool
[src]
pub fn is_sticky(self) -> bool
pub fn is_sticky_multi(self) -> bool
[src]
pub fn is_sticky_multi(self) -> bool
Trait Implementations
impl Debug for EventType
[src]
impl Debug for EventType
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl PartialEq for EventType
[src]
impl PartialEq for EventType
fn eq(&self, other: &EventType) -> bool
[src]
fn eq(&self, other: &EventType) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &EventType) -> bool
[src]
fn ne(&self, other: &EventType) -> bool
This method tests for !=
.
impl Eq for EventType
[src]
impl Eq for EventType
impl Hash for EventType
[src]
impl Hash for EventType
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Clone for EventType
[src]
impl Clone for EventType
fn clone(&self) -> EventType
[src]
fn clone(&self) -> EventType
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)
Performs copy-assignment from source
. Read more
impl Copy for EventType
[src]
impl Copy for EventType
impl StaticType for EventType
[src]
impl StaticType for EventType
fn static_type() -> Type
[src]
fn static_type() -> Type
Returns the type identifier of Self
.
impl<'a> FromValueOptional<'a> for EventType
[src]
impl<'a> FromValueOptional<'a> for EventType
unsafe fn from_value_optional(value: &Value) -> Option<Self>
[src]
unsafe fn from_value_optional(value: &Value) -> Option<Self>
impl<'a> FromValue<'a> for EventType
[src]
impl<'a> FromValue<'a> for EventType
unsafe fn from_value(value: &Value) -> Self
[src]
unsafe fn from_value(value: &Value) -> Self
impl SetValue for EventType
[src]
impl SetValue for EventType
impl PartialOrd for EventType
[src]
impl PartialOrd for EventType
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
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
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
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more