Struct gstreamer::event::ProtectionBuilder
source · pub struct ProtectionBuilder<'a> {
builder: EventBuilder<'a>,
system_id: &'a str,
data: &'a Buffer,
origin: Option<&'a str>,
}
Fields§
§builder: EventBuilder<'a>
§system_id: &'a str
§data: &'a Buffer
§origin: Option<&'a str>
Implementations§
source§impl<'a> ProtectionBuilder<'a>
impl<'a> ProtectionBuilder<'a>
fn new(system_id: &'a str, data: &'a Buffer) -> Self
pub fn origin(self, origin: &'a str) -> Self
pub fn seqnum(self, seqnum: Seqnum) -> Self
pub fn running_time_offset(self, running_time_offset: i64) -> 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) -> Event
Auto Trait Implementations§
impl<'a> Freeze for ProtectionBuilder<'a>
impl<'a> RefUnwindSafe for ProtectionBuilder<'a>
impl<'a> Send for ProtectionBuilder<'a>
impl<'a> !Sync for ProtectionBuilder<'a>
impl<'a> Unpin for ProtectionBuilder<'a>
impl<'a> UnwindSafe for ProtectionBuilder<'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