pub struct Warning<T = MessageRef>(/* private fields */);
Implementations§
source§impl Warning
impl Warning
pub fn new<T: MessageErrorDomain>(error: T, message: &str) -> Message
pub fn builder<T: MessageErrorDomain>( error: T, message: &str, ) -> WarningBuilder<'_>
pub fn builder_from_error<'a>(error: Error) -> WarningBuilder<'a>
pub fn error(&self) -> Error
pub fn debug(&self) -> Option<GString>
pub fn details(&self) -> Option<&StructureRef>
pub fn writable_details(&mut self) -> &mut StructureRef
Methods from Deref<Target = MessageRef>§
pub fn as_ptr(&self) -> *const GstMessage
pub fn as_mut_ptr(&self) -> *mut GstMessage
pub fn copy(&self) -> Message
pub fn upcast_ref(&self) -> &MiniObjectRef
pub fn src(&self) -> Option<&Object>
pub fn seqnum(&self) -> Seqnum
pub fn structure(&self) -> Option<&StructureRef>
pub fn details(&self) -> Option<&StructureRef>
pub fn has_name(&self, name: &str) -> bool
pub fn view(&self) -> MessageView<'_>
pub fn type_(&self) -> MessageType
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Warning<T>where
T: Freeze,
impl<T> RefUnwindSafe for Warning<T>where
T: RefUnwindSafe,
impl<T> Send for Warning<T>where
T: Send,
impl<T> Sync for Warning<T>where
T: Sync,
impl<T> Unpin for Warning<T>where
T: Unpin,
impl<T> UnwindSafe for Warning<T>where
T: UnwindSafe,
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