/// One of the features enabled that needs `IoSource`. That is `net` or `os-ext` /// on Unix (for `pipe`).
macro_rules! cfg_io_source {
($($item:item)*) => {
$( #[cfg(any(feature = "net", all(any(unix, target_os = "hermit"), feature = "os-ext")))] #[cfg_attr(docsrs, doc(cfg(any(feature = "net", all(any(unix, target_os = "hermit"), feature = "os-ext")))))]
$item
)*
}
}
/// The `os-ext` feature is enabled, or one of the features that need `os-ext`.
macro_rules! cfg_any_os_ext {
($($item:item)*) => {
$( #[cfg(any(feature = "os-ext", feature = "net"))] #[cfg_attr(docsrs, doc(cfg(any(feature = "os-ext", feature = "net"))))]
$item
)*
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.