Lines Matching refs:cfg_attr
9 #![cfg_attr(docsrs, feature(doc_cfg))]
11 #![cfg_attr(test, deny(warnings))]
72 #[cfg_attr(docsrs, doc(cfg(all(unix, feature = "os-ext"))))]
88 #[cfg_attr(docsrs, doc(cfg(all(windows, feature = "os-ext"))))]
100 #![cfg_attr(feature = "os-poll", doc = "## `os-poll` (enabled)")]
101 #![cfg_attr(not(feature = "os-poll"), doc = "## `os-poll` (disabled)")]
109 #![cfg_attr(feature = "os-ext", doc = "## `os-ext` (enabled)")]
110 #![cfg_attr(not(feature = "os-ext"), doc = "## `os-ext` (disabled)")]
115 #![cfg_attr(feature = "net", doc = "## Network types (enabled)")]
116 #![cfg_attr(not(feature = "net"), doc = "## Network types (disabled)")]
142 #![cfg_attr(feature = "os-poll", doc = "```")]
143 #![cfg_attr(not(feature = "os-poll"), doc = "```ignore")]
177 #![cfg_attr(all(feature = "os-poll", features = "net"), doc = "```")]
178 #![cfg_attr(not(all(feature = "os-poll", features = "net")), doc = "```ignore")]
216 #![cfg_attr(all(feature = "os-poll", features = "net"), doc = "```")]
217 #![cfg_attr(not(all(feature = "os-poll", features = "net")), doc = "```ignore")]