##// 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
Yuya Nishihara
rust-chg: add wrapper around C function
r40006 // 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.
Yuya Nishihara
rust-chg: reimplement attach_io operation as async function...
r45232 mod attachio;
Yuya Nishihara
rust-chg: exclude futures-dependent modules from build and break things...
r45230 //mod clientext;
//pub mod locator;
Yuya Nishihara
rust-chg: add parser for request messages sent to "S" channel...
r40007 pub mod message;
Yuya Nishihara
rust-chg: add wrapper around C function
r40006 pub mod procutil;
Yuya Nishihara
rust-chg: exclude futures-dependent modules from build and break things...
r45230 //mod runcommand;
//mod uihandler;
Yuya Nishihara
rust-chg: add callback to handle pager and shell command requests...
r40010
Yuya Nishihara
rust-chg: exclude futures-dependent modules from build and break things...
r45230 //pub use clientext::ChgClientExt;
//pub use uihandler::{ChgUiHandler, SystemHandler};