pub struct MissingPluginMessage<'a> {
pub msg: &'a MessageRef,
}
Fields§
§msg: &'a MessageRef
Implementations§
source§impl<'a> MissingPluginMessage<'a>
impl<'a> MissingPluginMessage<'a>
pub fn for_decoder(caps: &'a Caps) -> Message
pub fn builder_for_decoder(caps: &'a Caps) -> MissingPluginMessageBuilder<'a>
pub fn for_encoder(caps: &'a Caps) -> Message
pub fn builder_for_encoder(caps: &'a Caps) -> MissingPluginMessageBuilder<'a>
pub fn for_element(name: &'a str) -> Message
pub fn builder_for_element(name: &'a str) -> MissingPluginMessageBuilder<'a>
pub fn for_uri_source(protocol: &'a str) -> Message
pub fn builder_for_uri_source( protocol: &'a str, ) -> MissingPluginMessageBuilder<'a>
pub fn for_uri_sink(protocol: &'a str) -> Message
pub fn builder_for_uri_sink( protocol: &'a str, ) -> MissingPluginMessageBuilder<'a>
pub fn is(msg: &MessageRef) -> bool
pub fn parse(msg: &'a MessageRef) -> Result<Self, BoolError>
pub fn description(&self) -> GString
pub fn installer_detail(&self) -> GString
pub fn stream_id(&self) -> Option<&GStr>
Trait Implementations§
source§impl<'a> Clone for MissingPluginMessage<'a>
impl<'a> Clone for MissingPluginMessage<'a>
source§fn clone(&self) -> MissingPluginMessage<'a>
fn clone(&self) -> MissingPluginMessage<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for MissingPluginMessage<'a>
impl<'a> RefUnwindSafe for MissingPluginMessage<'a>
impl<'a> Send for MissingPluginMessage<'a>
impl<'a> Sync for MissingPluginMessage<'a>
impl<'a> Unpin for MissingPluginMessage<'a>
impl<'a> UnwindSafe for MissingPluginMessage<'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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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