##// END OF EJS Templates
rust-chg: have attach_io() simply take reference of AsRawFd object...
rust-chg: have attach_io() simply take reference of AsRawFd object We no longer have to deal with the restriction of the Future type. Before, these file objects couldn't be references and that's the only reason why we had to make stderr an Option<T>. This fixes future type deduction issue of stderr = None, where rustc would complain that T of Option<T> couldn't be deduced. Differential Revision: https://phab.mercurial-scm.org/D8443

File last commit:

r45232:1be60552 default
r45233:cb5822e6 default
Show More
lib.rs
15 lines | 398 B | application/rls-services+xml | RustLexer
// Copyright 2018 Yuya Nishihara <yuya@tcha.org>
//
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2 or any later version.
mod attachio;
//mod clientext;
//pub mod locator;
pub mod message;
pub mod procutil;
//mod runcommand;
//mod uihandler;
//pub use clientext::ChgClientExt;
//pub use uihandler::{ChgUiHandler, SystemHandler};