Struct atspi_proxies::collection::CollectionProxy

source ·
pub struct CollectionProxy<'p>(/* private fields */);

Implementations§

source§

impl<'p> CollectionProxy<'p>

source

pub async fn new(conn: &Connection) -> Result<CollectionProxy<'p>>

Creates a new proxy with the default service and path.

source

pub fn builder(conn: &Connection) -> Builder<'p, Self>

Returns a customizable builder for this proxy.

source

pub fn into_inner(self) -> Proxy<'p>

Consumes self, returning the underlying zbus::Proxy.

source

pub fn inner(&self) -> &Proxy<'p>

The reference to the underlying zbus::Proxy.

source

pub fn inner_mut(&mut self) -> &mut Proxy<'p>

The mutable reference to the underlying zbus::Proxy.

source

pub async fn get_active_descendant(&self) -> Result<ObjectRef>

The active descendant of the given object.

May not be implemented by any known toolkit or private implementation.

See atspi/collection.c

source

pub async fn get_matches( &self, rule: ObjectMatchRule, sortby: SortOrder, count: i32, traverse: bool, ) -> Result<Vec<ObjectRef>>

Retrieves a list of objects that match the specified ObjectMatchRule, ordered according to SortOrder and limited by the count parameter.

§Arguments
  • rule - An ObjectMatchRule describing the match criteria.
  • sortby - A SortOrder specifying the way the results are to be sorted.
  • count - The maximum number of results to return, or 0 for no limit.
  • traverse - Not supported.
source

pub async fn get_matches_from( &self, current_object: &ObjectPath<'_>, rule: ObjectMatchRule, sortby: SortOrder, tree: TreeTraversalType, count: i32, traverse: bool, ) -> Result<Vec<ObjectRef>>

Retrieves objects from the collection, after current_object, matching a given rule.

§Arguments
  • current_object - The object at which to start searching.
  • rule - An ObjectMatchRule describing the match criteria.
  • sortby - A SortOrder specifying the way the results are to be sorted.
  • tree - A TreeTraversalType specifying restrictions on the objects to be traversed.
  • count - The maximum number of results to return, or 0 for no limit.
  • traverse - Not supported by the known implementation (atk-collection).
source

pub async fn get_matches_to( &self, current_object: &ObjectPath<'_>, rule: ObjectMatchRule, sortby: SortOrder, tree: TreeTraversalType, limit_scope: bool, count: i32, traverse: bool, ) -> Result<Vec<ObjectRef>>

Retrieves objects from the collection, before current_object, matching a given rule.

§Arguments
  • current_object - The object at which to start searching.
  • rule - An ObjectMatchRule describing the match criteria.
  • sortby - A SortOrder specifying the way the results are to be sorted.
  • tree - A TreeTraversalType specifying restrictions on the objects to be traversed.
  • limit_scope - If true, only descendants of current_object’s parent will be returned. Otherwise (if false), any accessible may be returned if it would preceed current_object in a flattened hierarchy.
  • count - The maximum number of results to return, or 0 for no limit.
  • traverse - Not supported by the known implementation (atk-collection).

Trait Implementations§

source§

impl<'p> AsMut<Proxy<'p>> for CollectionProxy<'p>

source§

fn as_mut(&mut self) -> &mut Proxy<'p>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<'p> AsRef<Proxy<'p>> for CollectionProxy<'p>

source§

fn as_ref(&self) -> &Proxy<'p>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'p> Clone for CollectionProxy<'p>

source§

fn clone(&self) -> CollectionProxy<'p>

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<'p> Debug for CollectionProxy<'p>

source§

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

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

impl<'p> From<Proxy<'p>> for CollectionProxy<'p>

source§

fn from(proxy: Proxy<'p>) -> Self

Converts to this type from the input type.
source§

impl<'a> ProxyDefault for CollectionProxy<'a>

source§

const INTERFACE: Option<&'static str> = _

source§

const DESTINATION: Option<&'static str> = _

source§

const PATH: Option<&'static str> = _

source§

impl<'p> ProxyImpl<'p> for CollectionProxy<'p>

source§

fn builder(conn: &Connection) -> Builder<'p, Self>

Returns a customizable builder for this proxy.
source§

fn into_inner(self) -> Proxy<'p>

Consumes self, returning the underlying zbus::Proxy.
source§

fn inner(&self) -> &Proxy<'p>

The reference to the underlying zbus::Proxy.
source§

impl<'p> Serialize for CollectionProxy<'p>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<'p> Type for CollectionProxy<'p>

source§

fn signature() -> Signature<'static>

Get the signature for the implementing type. Read more

Auto Trait Implementations§

§

impl<'p> Freeze for CollectionProxy<'p>

§

impl<'p> !RefUnwindSafe for CollectionProxy<'p>

§

impl<'p> Send for CollectionProxy<'p>

§

impl<'p> Sync for CollectionProxy<'p>

§

impl<'p> Unpin for CollectionProxy<'p>

§

impl<'p> !UnwindSafe for CollectionProxy<'p>

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> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> DynamicType for T
where T: Type + ?Sized,

source§

fn dynamic_signature(&self) -> Signature<'_>

Get the signature for the implementing type. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Same for T

§

type Output = T

Should always be Self
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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more