1//! Non-macOS stub. Returns `Ok(None)` so the type can appear portably. 2 3use crate::source::SourceKind; 4use crate::sources::stub_macros::unit_stub; 5 6unit_stub!( 7 /// macOS `IOPlatformUUID` source (no-op on non-macOS targets). 8 IoPlatformUuid, 9 SourceKind::IoPlatformUuid 10);