usestd::ffi::c_void;/// OS-specific configuration needed to create media controls.
#[derive(Debug)]pubstructPlatformConfig<'a>{/// The name to be displayed to the user. (*Required on Linux*)
pubdisplay_name:&'astr,
/// Should follow [the D-Bus spec](https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names-bus). (*Required on Linux*)
pubdbus_name:&'astr,
/// An HWND. (*Required on Windows*)
pubhwnd:Option<*mut c_void>,
}