usecrate::Guid;/// This represents a DBus server address with the prefix [`launchd:`].
////// [`launchd:`]: https://dbus.freedesktop.org/doc/dbus-specification.html#transports-launchd
#[derive(Debug, Clone, PartialEq, Eq)]pubstructLaunchd{/// Path of the unix domain socket for the launchd created dbus-daemon.
pubenv: String,
/// The GUID of the Address.
pubguid:Option<Guid>,
}implLaunchd{pubfnis_connectable(&self)->bool{true}pubfnis_listenable(&self)->bool{true}}