Struct gstreamer::PadProbeInfo
source · pub struct PadProbeInfo<'a> {
pub mask: PadProbeType,
pub id: Option<PadProbeId>,
pub offset: u64,
pub size: u32,
pub data: Option<PadProbeData<'a>>,
pub flow_res: Result<FlowSuccess, FlowError>,
}
Fields§
§mask: PadProbeType
§id: Option<PadProbeId>
§offset: u64
§size: u32
§data: Option<PadProbeData<'a>>
§flow_res: Result<FlowSuccess, FlowError>
Implementations§
source§impl<'a> PadProbeInfo<'a>
impl<'a> PadProbeInfo<'a>
pub fn buffer(&self) -> Option<&Buffer>
pub fn buffer_mut(&mut self) -> Option<&mut Buffer>
pub fn buffer_list(&self) -> Option<&BufferList>
pub fn buffer_list_mut(&mut self) -> Option<&mut BufferList>
pub fn query(&self) -> Option<&QueryRef>
pub fn query_mut(&mut self) -> Option<&mut QueryRef>
pub fn event(&self) -> Option<&Event>
pub fn event_mut(&mut self) -> Option<&mut Event>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PadProbeInfo<'a>
impl<'a> RefUnwindSafe for PadProbeInfo<'a>
impl<'a> Send for PadProbeInfo<'a>
impl<'a> Sync for PadProbeInfo<'a>
impl<'a> Unpin for PadProbeInfo<'a>
impl<'a> !UnwindSafe for PadProbeInfo<'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