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