Struct gstreamer::message::StepStartBuilder
source · pub struct StepStartBuilder<'a> {
builder: MessageBuilder<'a>,
active: bool,
amount: GenericFormattedValue,
rate: f64,
flush: bool,
intermediate: bool,
}
Fields§
§builder: MessageBuilder<'a>
§active: bool
§amount: GenericFormattedValue
§rate: f64
§flush: bool
§intermediate: bool
Implementations§
source§impl<'a> StepStartBuilder<'a>
impl<'a> StepStartBuilder<'a>
fn new( active: bool, amount: GenericFormattedValue, rate: f64, flush: bool, intermediate: bool, ) -> 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 StepStartBuilder<'a>
impl<'a> RefUnwindSafe for StepStartBuilder<'a>
impl<'a> Send for StepStartBuilder<'a>
impl<'a> !Sync for StepStartBuilder<'a>
impl<'a> Unpin for StepStartBuilder<'a>
impl<'a> UnwindSafe for StepStartBuilder<'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