Struct gstreamer::event::SegmentDone
source · pub struct SegmentDone<T = EventRef>(/* private fields */);
Implementations§
source§impl SegmentDone<Event>
impl SegmentDone<Event>
pub fn get_mut(&mut self) -> Option<&mut SegmentDone>
source§impl SegmentDone<Event>
impl SegmentDone<Event>
pub fn new(position: impl FormattedValue) -> Event
pub fn builder<'a>(position: impl FormattedValue) -> SegmentDoneBuilder<'a>
source§impl SegmentDone
impl SegmentDone
pub fn get(&self) -> GenericFormattedValue
Methods from Deref<Target = EventRef>§
pub fn as_ptr(&self) -> *const GstEvent
pub fn as_mut_ptr(&self) -> *mut GstEvent
pub fn copy(&self) -> Event
pub fn upcast_ref(&self) -> &MiniObjectRef
pub fn seqnum(&self) -> Seqnum
pub fn running_time_offset(&self) -> i64
pub fn structure(&self) -> Option<&StructureRef>
pub fn is_upstream(&self) -> bool
pub fn is_downstream(&self) -> bool
pub fn is_serialized(&self) -> bool
pub fn is_sticky(&self) -> bool
pub fn is_sticky_multi(&self) -> bool
pub fn type_(&self) -> EventType
pub fn has_name(&self, name: &str) -> bool
pub fn view(&self) -> EventView<'_>
Trait Implementations§
source§impl Borrow<SegmentDone> for SegmentDone<Event>
impl Borrow<SegmentDone> for SegmentDone<Event>
source§fn borrow(&self) -> &SegmentDone
fn borrow(&self) -> &SegmentDone
Immutably borrows from an owned value. Read more
source§impl Debug for SegmentDone
impl Debug for SegmentDone
source§impl Debug for SegmentDone<Event>
impl Debug for SegmentDone<Event>
source§impl Deref for SegmentDone
impl Deref for SegmentDone
source§impl Deref for SegmentDone<Event>
impl Deref for SegmentDone<Event>
source§impl From<SegmentDone<Event>> for Event
impl From<SegmentDone<Event>> for Event
source§fn from(concrete: SegmentDone<Event>) -> Self
fn from(concrete: SegmentDone<Event>) -> Self
Converts to this type from the input type.
source§impl ToOwned for SegmentDone
impl ToOwned for SegmentDone
§type Owned = SegmentDone<Event>
type Owned = SegmentDone<Event>
The resulting type after obtaining ownership.
source§fn to_owned(&self) -> Self::Owned
fn to_owned(&self) -> Self::Owned
Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · source§fn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
Uses borrowed data to replace owned data, usually by cloning. Read more
Auto Trait Implementations§
impl<T> Freeze for SegmentDone<T>where
T: Freeze,
impl<T> RefUnwindSafe for SegmentDone<T>where
T: RefUnwindSafe,
impl<T> Send for SegmentDone<T>where
T: Send,
impl<T> Sync for SegmentDone<T>where
T: Sync,
impl<T> Unpin for SegmentDone<T>where
T: Unpin,
impl<T> UnwindSafe for SegmentDone<T>where
T: UnwindSafe,
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> 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 more