Struct gstreamer::message::SegmentStartBuilder
source · pub struct SegmentStartBuilder<'a> {
builder: MessageBuilder<'a>,
position: GenericFormattedValue,
}
Fields§
§builder: MessageBuilder<'a>
§position: GenericFormattedValue
Implementations§
source§impl<'a> SegmentStartBuilder<'a>
impl<'a> SegmentStartBuilder<'a>
fn new(position: GenericFormattedValue) -> 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 SegmentStartBuilder<'a>
impl<'a> RefUnwindSafe for SegmentStartBuilder<'a>
impl<'a> Send for SegmentStartBuilder<'a>
impl<'a> !Sync for SegmentStartBuilder<'a>
impl<'a> Unpin for SegmentStartBuilder<'a>
impl<'a> UnwindSafe for SegmentStartBuilder<'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