Struct atspi_proxies::table_cell::TableCellProxyBlocking
source · pub struct TableCellProxyBlocking<'p>(/* private fields */);
Implementations§
source§impl<'p> TableCellProxyBlocking<'p>
impl<'p> TableCellProxyBlocking<'p>
sourcepub fn new(conn: &Connection) -> Result<TableCellProxyBlocking<'p>>
pub fn new(conn: &Connection) -> Result<TableCellProxyBlocking<'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_column_header_cells(&self) -> Result<Vec<ObjectRef>>
pub fn get_column_header_cells(&self) -> Result<Vec<ObjectRef>>
GetColumnHeaderCells method
sourcepub fn get_row_column_span(&self) -> Result<(bool, i32, i32, i32, i32)>
pub fn get_row_column_span(&self) -> Result<(bool, i32, i32, i32, i32)>
GetRowColumnSpan method
sourcepub fn get_row_header_cells(&self) -> Result<Vec<ObjectRef>>
pub fn get_row_header_cells(&self) -> Result<Vec<ObjectRef>>
GetRowHeaderCells method
sourcepub fn column_span(&self) -> Result<i32>
pub fn column_span(&self) -> Result<i32>
ColumnSpan property
sourcepub fn cached_column_span(
&self
) -> Result<Option<<Result<i32> as ResultAdapter>::Ok>, <Result<i32> as ResultAdapter>::Err>
pub fn cached_column_span( &self ) -> Result<Option<<Result<i32> as ResultAdapter>::Ok>, <Result<i32> as ResultAdapter>::Err>
Get the cached value of the ColumnSpan
property, or None
if the property is not cached.
sourcepub fn receive_column_span_changed(
&self
) -> PropertyIterator<'p, <Result<i32> as ResultAdapter>::Ok>
pub fn receive_column_span_changed( &self ) -> PropertyIterator<'p, <Result<i32> as ResultAdapter>::Ok>
Create a stream for the ColumnSpan
property changes. This is a convenient wrapper around zbus::blocking::Proxy::receive_property_changed
.
sourcepub fn cached_position(
&self
) -> Result<Option<<Result<(i32, i32)> as ResultAdapter>::Ok>, <Result<(i32, i32)> as ResultAdapter>::Err>
pub fn cached_position( &self ) -> Result<Option<<Result<(i32, i32)> as ResultAdapter>::Ok>, <Result<(i32, i32)> as ResultAdapter>::Err>
Get the cached value of the Position
property, or None
if the property is not cached.
sourcepub fn receive_position_changed(
&self
) -> PropertyIterator<'p, <Result<(i32, i32)> as ResultAdapter>::Ok>
pub fn receive_position_changed( &self ) -> PropertyIterator<'p, <Result<(i32, i32)> as ResultAdapter>::Ok>
Create a stream for the Position
property changes. This is a convenient wrapper around zbus::blocking::Proxy::receive_property_changed
.
sourcepub fn cached_row_span(
&self
) -> Result<Option<<Result<i32> as ResultAdapter>::Ok>, <Result<i32> as ResultAdapter>::Err>
pub fn cached_row_span( &self ) -> Result<Option<<Result<i32> as ResultAdapter>::Ok>, <Result<i32> as ResultAdapter>::Err>
Get the cached value of the RowSpan
property, or None
if the property is not cached.
sourcepub fn receive_row_span_changed(
&self
) -> PropertyIterator<'p, <Result<i32> as ResultAdapter>::Ok>
pub fn receive_row_span_changed( &self ) -> PropertyIterator<'p, <Result<i32> as ResultAdapter>::Ok>
Create a stream for the RowSpan
property changes. This is a convenient wrapper around zbus::blocking::Proxy::receive_property_changed
.
sourcepub fn cached_table(
&self
) -> Result<Option<<Result<ObjectRef> as ResultAdapter>::Ok>, <Result<ObjectRef> as ResultAdapter>::Err>
pub fn cached_table( &self ) -> Result<Option<<Result<ObjectRef> as ResultAdapter>::Ok>, <Result<ObjectRef> as ResultAdapter>::Err>
Get the cached value of the Table
property, or None
if the property is not cached.
sourcepub fn receive_table_changed(
&self
) -> PropertyIterator<'p, <Result<ObjectRef> as ResultAdapter>::Ok>
pub fn receive_table_changed( &self ) -> PropertyIterator<'p, <Result<ObjectRef> as ResultAdapter>::Ok>
Create a stream for the Table
property changes. This is a convenient wrapper around zbus::blocking::Proxy::receive_property_changed
.
Trait Implementations§
source§impl<'p> AsMut<Proxy<'p>> for TableCellProxyBlocking<'p>
impl<'p> AsMut<Proxy<'p>> for TableCellProxyBlocking<'p>
source§impl<'p> AsRef<Proxy<'p>> for TableCellProxyBlocking<'p>
impl<'p> AsRef<Proxy<'p>> for TableCellProxyBlocking<'p>
source§impl<'p> Clone for TableCellProxyBlocking<'p>
impl<'p> Clone for TableCellProxyBlocking<'p>
source§fn clone(&self) -> TableCellProxyBlocking<'p>
fn clone(&self) -> TableCellProxyBlocking<'p>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more