Sign in
rust
/
rust
/
526a91cbcc4601b92b0587405015e07b9c0d79f6
/
.
/
library
/
std
/
src
/
sys
/
net
/
hostname
/
unsupported.rs
blob: d868f68f32dd21802ae9822a7c1819bd5477cb8f [
file
] [
log
] [
blame
]
use
crate
::
ffi
::
OsString
;
use
crate
::
io
::{
Error
,
Result
};
pub
fn
hostname
()
->
Result
<
OsString
>
{
Err
(
Error
::
UNSUPPORTED_PLATFORM
)
}