Struct gstreamer::message::QosBuilder
source · pub struct QosBuilder<'a> {
builder: MessageBuilder<'a>,
live: bool,
running_time: Option<ClockTime>,
stream_time: Option<ClockTime>,
timestamp: Option<ClockTime>,
duration: Option<ClockTime>,
values: Option<(i64, f64, i32)>,
stats: Option<(GenericFormattedValue, GenericFormattedValue)>,
}
Fields§
§builder: MessageBuilder<'a>
§live: bool
§running_time: Option<ClockTime>
§stream_time: Option<ClockTime>
§timestamp: Option<ClockTime>
§duration: Option<ClockTime>
§values: Option<(i64, f64, i32)>
§stats: Option<(GenericFormattedValue, GenericFormattedValue)>
Implementations§
source§impl<'a> QosBuilder<'a>
impl<'a> QosBuilder<'a>
fn new(live: bool) -> Self
pub fn running_time(self, running_time: impl Into<Option<ClockTime>>) -> Self
pub fn stream_time(self, stream_time: impl Into<Option<ClockTime>>) -> Self
pub fn timestamp(self, timestamp: impl Into<Option<ClockTime>>) -> Self
pub fn duration(self, duration: impl Into<Option<ClockTime>>) -> Self
pub fn values(self, jitter: i64, proportion: f64, quality: i32) -> Self
pub fn stats<V: FormattedValue>( self, processed: V, dropped: impl CompatibleFormattedValue<V>, ) -> Self
pub fn src<O: IsA<Object> + Cast + Clone>(self, src: &O) -> Self
pub fn seqnum(self, seqnum: Seqnum) -> Self
pub fn other_field(self, name: &'a str, value: impl ToSendValue) -> Self
pub fn other_fields( self, other_fields: &[(&'a str, &'a (dyn ToSendValue + Sync))], ) -> Self
👎Deprecated: use build.other_field() instead
pub fn build(self) -> Message
Auto Trait Implementations§
impl<'a> Freeze for QosBuilder<'a>
impl<'a> RefUnwindSafe for QosBuilder<'a>
impl<'a> Send for QosBuilder<'a>
impl<'a> !Sync for QosBuilder<'a>
impl<'a> Unpin for QosBuilder<'a>
impl<'a> UnwindSafe for QosBuilder<'a>
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