usecrate::Guid;/// This represents a DBus server address with the prefix [`systemd`].
////// [`systemd:`]: https://dbus.freedesktop.org/doc/dbus-specification.html#transports-systemd
#[derive(Debug, Clone, PartialEq, Eq)]pubstructSystemd{/// The GUID of the Address.
pubguid:Option<Guid>,
}implSystemd{pubfnis_connectable(&self)->bool{false}pubfnis_listenable(&self)->bool{true}}