Feature gate: #![feature(motor_ext)]
motor_ext feature provides extensions to Rust [std] library pertinent to Motor OS.
This is a tracking issue for stabilizing motor_ext feature, as discussed in the Motor OS stdlib PR.
Public API
At the moment, there is one trait specific to Motor OS:
pub trait ChildExt: Sealed {
/// Extracts the main thread raw handle, without taking ownership
#[unstable(feature = "motor_ext", issue = "$THIS_ISSUE")]
fn sys_handle(&self) -> u64;
}
and generic OsStrExt, OsStringExt traits in os/motor/ffi.rs.
Steps / History
(Remember to update the S-tracking-* label when checking boxes.)
Unresolved Questions
Feature gate:
#![feature(motor_ext)]motor_extfeature provides extensions to Rust [std] library pertinent to Motor OS.This is a tracking issue for stabilizing motor_ext feature, as discussed in the Motor OS stdlib PR.
Public API
At the moment, there is one trait specific to Motor OS:
and generic
OsStrExt,OsStringExttraits inos/motor/ffi.rs.Steps / History
(Remember to update the
S-tracking-*label when checking boxes.)Unresolved Questions
Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩