Nushell plugin for interacting with D-Bus
at main 27 lines 1.1 kB view raw
1<!-- Edited from: https://dbus.freedesktop.org/doc/dbus-specification.html#introspection-format --> 2<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" 3 "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> 4<node name="/com/example/sample_object0"> 5 <interface name="com.example.SampleInterface0"> 6 <method name="Frobate"> 7 <arg name="foo" type="i" direction="in"/> 8 <arg name="bar" type="as" direction="in"/> 9 <arg name="baz" type="a{us}" direction="out"/> 10 <annotation name="org.freedesktop.DBus.Deprecated" value="true"/> 11 </method> 12 <method name="Bazify"> 13 <arg name="bar" type="(iiu)" direction="in"/> 14 <arg name="len" type="u" direction="out"/> 15 <arg name="bar" type="v" direction="out"/> 16 </method> 17 <method name="Mogrify"> 18 <arg name="bar" type="(iiav)" direction="in"/> 19 </method> 20 <signal name="Changed"> 21 <arg name="new_value" type="b"/> 22 </signal> 23 <property name="Bar" type="y" access="readwrite"/> 24 </interface> 25 <node name="child_of_sample_object"/> 26 <node name="another_child_of_sample_object"/> 27</node>