Sign in
fuchsia
/
third_party
/
rust
/
ae60ebd46daace4af7eae5e254b39f55b8b51e92
/
.
/
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
)
}