Struct gstreamer_base::base_parse_frame::BaseParseFrame
source · pub struct BaseParseFrame<'a>(NonNull<GstBaseParseFrame>, PhantomData<&'a BaseParse>);
Tuple Fields§
§0: NonNull<GstBaseParseFrame>
§1: PhantomData<&'a BaseParse>
Implementations§
source§impl<'a> BaseParseFrame<'a>
impl<'a> BaseParseFrame<'a>
pub(crate) unsafe fn new( frame: *mut GstBaseParseFrame, _parse: &'a BaseParse, ) -> Self
pub fn buffer(&self) -> Option<&BufferRef>
pub fn buffer_mut(&mut self) -> Option<&mut BufferRef>
pub fn output_buffer(&self) -> Option<&BufferRef>
pub fn output_buffer_mut(&mut self) -> Option<&mut BufferRef>
pub fn set_output_buffer(&mut self, output_buffer: Buffer)
pub fn flags(&self) -> BaseParseFrameFlags
pub fn set_flags(&mut self, flags: BaseParseFrameFlags)
pub fn unset_flags(&mut self, flags: BaseParseFrameFlags)
pub fn offset(&self) -> u64
pub fn overhead(&self) -> Overhead
pub fn set_overhead(&mut self, overhead: Overhead)
Trait Implementations§
source§impl<'a> Debug for BaseParseFrame<'a>
impl<'a> Debug for BaseParseFrame<'a>
impl<'a> Send for BaseParseFrame<'a>
impl<'a> Sync for BaseParseFrame<'a>
Auto Trait Implementations§
impl<'a> Freeze for BaseParseFrame<'a>
impl<'a> RefUnwindSafe for BaseParseFrame<'a>
impl<'a> Unpin for BaseParseFrame<'a>
impl<'a> UnwindSafe for BaseParseFrame<'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