pub struct HyperlinkProxyBlocking<'p>(/* private fields */);Implementations§
Source§impl<'p> HyperlinkProxyBlocking<'p>
impl<'p> HyperlinkProxyBlocking<'p>
Sourcepub fn new(conn: &Connection) -> Result<HyperlinkProxyBlocking<'p>>
pub fn new(conn: &Connection) -> Result<HyperlinkProxyBlocking<'p>>
Creates a new proxy with the default service and path.
Sourcepub fn builder(conn: &Connection) -> Builder<'p, Self>
pub fn builder(conn: &Connection) -> Builder<'p, Self>
Returns a customizable builder for this proxy.
Sourcepub fn into_inner(self) -> Proxy<'p>
pub fn into_inner(self) -> Proxy<'p>
Consumes self, returning the underlying zbus::Proxy.
Sourcepub fn inner_mut(&mut self) -> &mut Proxy<'p>
pub fn inner_mut(&mut self) -> &mut Proxy<'p>
The mutable reference to the underlying zbus::Proxy.
Sourcepub fn get_object(&self, i: i32) -> Result<ObjectRef>
pub fn get_object(&self, i: i32) -> Result<ObjectRef>
GetObject method
Sourcepub fn cached_end_index(
&self,
) -> Result<Option<<Result<i32> as ResultAdapter>::Ok>, <Result<i32> as ResultAdapter>::Err>
pub fn cached_end_index( &self, ) -> Result<Option<<Result<i32> as ResultAdapter>::Ok>, <Result<i32> as ResultAdapter>::Err>
Get the cached value of the EndIndex property, or None if the property is not cached.
Sourcepub fn receive_end_index_changed(
&self,
) -> PropertyIterator<'p, <Result<i32> as ResultAdapter>::Ok>
pub fn receive_end_index_changed( &self, ) -> PropertyIterator<'p, <Result<i32> as ResultAdapter>::Ok>
Create a stream for the EndIndex property changes. This is a convenient wrapper around zbus::blocking::Proxy::receive_property_changed.
Sourcepub fn cached_nanchors(
&self,
) -> Result<Option<<Result<i16> as ResultAdapter>::Ok>, <Result<i16> as ResultAdapter>::Err>
pub fn cached_nanchors( &self, ) -> Result<Option<<Result<i16> as ResultAdapter>::Ok>, <Result<i16> as ResultAdapter>::Err>
Get the cached value of the Nanchors property, or None if the property is not cached.
Sourcepub fn receive_nanchors_changed(
&self,
) -> PropertyIterator<'p, <Result<i16> as ResultAdapter>::Ok>
pub fn receive_nanchors_changed( &self, ) -> PropertyIterator<'p, <Result<i16> as ResultAdapter>::Ok>
Create a stream for the Nanchors property changes. This is a convenient wrapper around zbus::blocking::Proxy::receive_property_changed.
Sourcepub fn start_index(&self) -> Result<i32>
pub fn start_index(&self) -> Result<i32>
StartIndex property
Sourcepub fn cached_start_index(
&self,
) -> Result<Option<<Result<i32> as ResultAdapter>::Ok>, <Result<i32> as ResultAdapter>::Err>
pub fn cached_start_index( &self, ) -> Result<Option<<Result<i32> as ResultAdapter>::Ok>, <Result<i32> as ResultAdapter>::Err>
Get the cached value of the StartIndex property, or None if the property is not cached.
Sourcepub fn receive_start_index_changed(
&self,
) -> PropertyIterator<'p, <Result<i32> as ResultAdapter>::Ok>
pub fn receive_start_index_changed( &self, ) -> PropertyIterator<'p, <Result<i32> as ResultAdapter>::Ok>
Create a stream for the StartIndex property changes. This is a convenient wrapper around zbus::blocking::Proxy::receive_property_changed.
Trait Implementations§
Source§impl<'p> AsMut<Proxy<'p>> for HyperlinkProxyBlocking<'p>
impl<'p> AsMut<Proxy<'p>> for HyperlinkProxyBlocking<'p>
Source§impl<'p> AsRef<Proxy<'p>> for HyperlinkProxyBlocking<'p>
impl<'p> AsRef<Proxy<'p>> for HyperlinkProxyBlocking<'p>
Source§impl<'p> Clone for HyperlinkProxyBlocking<'p>
impl<'p> Clone for HyperlinkProxyBlocking<'p>
Source§fn clone(&self) -> HyperlinkProxyBlocking<'p>
fn clone(&self) -> HyperlinkProxyBlocking<'p>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more