Struct atspi_proxies::table_cell::TableCellProxy
source · pub struct TableCellProxy<'p>(/* private fields */);
Implementations§
source§impl<'p> TableCellProxy<'p>
impl<'p> TableCellProxy<'p>
sourcepub async fn new(conn: &Connection) -> Result<TableCellProxy<'p>>
pub async fn new(conn: &Connection) -> Result<TableCellProxy<'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 async fn get_column_header_cells(&self) -> Result<Vec<ObjectRef>>
pub async fn get_column_header_cells(&self) -> Result<Vec<ObjectRef>>
GetColumnHeaderCells method
sourcepub async fn get_row_column_span(&self) -> Result<(bool, i32, i32, i32, i32)>
pub async fn get_row_column_span(&self) -> Result<(bool, i32, i32, i32, i32)>
GetRowColumnSpan method
sourcepub async fn get_row_header_cells(&self) -> Result<Vec<ObjectRef>>
pub async fn get_row_header_cells(&self) -> Result<Vec<ObjectRef>>
GetRowHeaderCells method
sourcepub async fn column_span(&self) -> Result<i32>
pub async 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 async fn receive_column_span_changed(
&self,
) -> PropertyStream<'p, <Result<i32> as ResultAdapter>::Ok>
pub async fn receive_column_span_changed( &self, ) -> PropertyStream<'p, <Result<i32> as ResultAdapter>::Ok>
Create a stream for the ColumnSpan
property changes. This is a convenient wrapper around zbus::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 async fn receive_position_changed(
&self,
) -> PropertyStream<'p, <Result<(i32, i32)> as ResultAdapter>::Ok>
pub async fn receive_position_changed( &self, ) -> PropertyStream<'p, <Result<(i32, i32)> as ResultAdapter>::Ok>
Create a stream for the Position
property changes. This is a convenient wrapper around zbus::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 async fn receive_row_span_changed(
&self,
) -> PropertyStream<'p, <Result<i32> as ResultAdapter>::Ok>
pub async fn receive_row_span_changed( &self, ) -> PropertyStream<'p, <Result<i32> as ResultAdapter>::Ok>
Create a stream for the RowSpan
property changes. This is a convenient wrapper around zbus::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 async fn receive_table_changed(
&self,
) -> PropertyStream<'p, <Result<ObjectRef> as ResultAdapter>::Ok>
pub async fn receive_table_changed( &self, ) -> PropertyStream<'p, <Result<ObjectRef> as ResultAdapter>::Ok>
Create a stream for the Table
property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed
.
Trait Implementations§
source§impl<'p> AsMut<Proxy<'p>> for TableCellProxy<'p>
impl<'p> AsMut<Proxy<'p>> for TableCellProxy<'p>
source§impl<'p> AsRef<Proxy<'p>> for TableCellProxy<'p>
impl<'p> AsRef<Proxy<'p>> for TableCellProxy<'p>
source§impl<'p> Clone for TableCellProxy<'p>
impl<'p> Clone for TableCellProxy<'p>
source§fn clone(&self) -> TableCellProxy<'p>
fn clone(&self) -> TableCellProxy<'p>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'p> Debug for TableCellProxy<'p>
impl<'p> Debug for TableCellProxy<'p>
source§impl<'p> From<Proxy<'p>> for TableCellProxy<'p>
impl<'p> From<Proxy<'p>> for TableCellProxy<'p>
source§impl<'a> ProxyDefault for TableCellProxy<'a>
impl<'a> ProxyDefault for TableCellProxy<'a>
source§impl<'p> ProxyImpl<'p> for TableCellProxy<'p>
impl<'p> ProxyImpl<'p> for TableCellProxy<'p>
source§impl<'p> Serialize for TableCellProxy<'p>
impl<'p> Serialize for TableCellProxy<'p>
Auto Trait Implementations§
impl<'p> Freeze for TableCellProxy<'p>
impl<'p> !RefUnwindSafe for TableCellProxy<'p>
impl<'p> Send for TableCellProxy<'p>
impl<'p> Sync for TableCellProxy<'p>
impl<'p> Unpin for TableCellProxy<'p>
impl<'p> !UnwindSafe for TableCellProxy<'p>
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
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)
clone_to_uninit
)