Struct wireplumber::registry::Interest

source ·
pub struct Interest<T: StaticType> { /* private fields */ }

Implementations§

source§

impl<T: StaticType> Interest<T>

source

pub fn new() -> Self

source

pub unsafe fn wrap_unchecked(interest: ObjectInterest) -> Self

source

pub fn inner(&self) -> &ObjectInterest

source

pub fn into_inner(self) -> ObjectInterest

source

pub fn matches_object<O: IsA<GObject>>(&self, object: &O) -> bool
where T: IsA<O>,

source

pub fn constrain<'o, O: IsA<GObject>>(&self, object: &'o O) -> Option<&'o T>
where T: IsA<O>,

source

pub fn filter<C: InterestContainer<T>>( self, container: &C ) -> IntoValueIterator<T>

source

pub fn lookup<C: InterestContainer<T>>(self, container: &C) -> Option<T>

Methods from Deref<Target = ObjectInterest>§

source

pub fn as_ptr(&self) -> *mut WpObjectInterest

Return the inner pointer to the underlying C value.

source

pub fn add_constraint( &self, type_: ConstraintType, subject: &str, verb: ConstraintVerb, value: Option<&Variant> )

source

pub fn matches( &self, flags: InterestMatchFlags, object_type: Type, object: Option<&impl IsA<Object>>, pw_props: Option<&Properties>, pw_global_props: Option<&Properties> ) -> InterestMatch

source

pub fn validate(&self) -> Result<(), Error>

source

pub fn matches_object<O: IsA<GObject>>(&self, object: &O) -> bool

source

pub fn matches_props(&self, props: &Properties) -> bool

source

pub fn matches_pw_object<O: IsA<PipewireObject>>(&self, object: &O) -> bool

Trait Implementations§

source§

impl<T: Clone + StaticType> Clone for Interest<T>

source§

fn clone(&self) -> Interest<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + StaticType> Debug for Interest<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: StaticType> Deref for Interest<T>

§

type Target = ObjectInterest

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<C: Borrow<Constraint>, T: StaticType> Extend<C> for Interest<T>

source§

fn extend<I: IntoIterator<Item = C>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<T: StaticType> From<Interest<T>> for ObjectInterest

source§

fn from(i: Interest<T>) -> Self

Converts to this type from the input type.
source§

impl<C: Borrow<Constraint>, T: StaticType> FromIterator<C> for Interest<T>

source§

fn from_iter<I: IntoIterator<Item = C>>(iter: I) -> Self

Creates a value from an iterator. Read more

Auto Trait Implementations§

§

impl<T> Freeze for Interest<T>

§

impl<T> RefUnwindSafe for Interest<T>
where T: RefUnwindSafe,

§

impl<T> !Send for Interest<T>

§

impl<T> !Sync for Interest<T>

§

impl<T> Unpin for Interest<T>
where T: Unpin,

§

impl<T> UnwindSafe for Interest<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.