Find
C
ase-sensitive
R
egexp search
Path
comm-central
/
third_party
/
rust
/
dbus
/
src
/
ffidisp
Navigation
Enable keyboard shortcuts
Name
Description
Size
connection.rs
Contains structs and traits relevant to the connection itself, and dispatching incoming messages.
25296
stdintf.rs
This module contains some standard interfaces and an easy way to call them. See the [D-Bus specification](https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces) for more information about these standard interfaces. The code here was originally created by dbus-codegen. # Example ``` use dbus::ffidisp::{Connection, BusType}; use dbus::ffidisp::stdintf::org_freedesktop_dbus::Introspectable; let c = Connection::get_private(BusType::Session).unwrap(); let p = c.with_path("org.freedesktop.DBus", "/", 10000); println!("Introspection XML: {}", p.introspect().unwrap()); ```
9486
watch.rs
10702