use crate::Guid;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Autolaunch {
#[cfg(target_family = "windows")]
pub scope: Option<String>,
pub guid: Option<Guid>,
}
impl Autolaunch {
pub fn is_connectable(&self) -> bool {
true
}
#[cfg(target_family = "windows")]
pub fn is_listenable(&self) -> bool {
true
}
#[cfg(target_family = "unix")]
pub fn is_listenable(&self) -> bool {
false
}
}