mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
Apply suggestions from code review
This commit is contained in:
parent
af83a9613c
commit
5e1941c058
@ -115,7 +115,7 @@ use crate::path::Path;
|
||||
use crate::str;
|
||||
use crate::sys::pipe::{read2, AnonPipe};
|
||||
use crate::sys::process as imp;
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
pub use crate::sys_common::process::CommandEnvs;
|
||||
use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
|
||||
|
||||
@ -948,7 +948,7 @@ impl Command {
|
||||
/// let cmd = Command::new("echo");
|
||||
/// assert_eq!(cmd.get_program(), "echo");
|
||||
/// ```
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
pub fn get_program(&self) -> &OsStr {
|
||||
self.inner.get_program()
|
||||
}
|
||||
@ -970,7 +970,7 @@ impl Command {
|
||||
/// let args: Vec<&OsStr> = cmd.get_args().collect();
|
||||
/// assert_eq!(args, &["first", "second"]);
|
||||
/// ```
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
pub fn get_args(&self) -> CommandArgs<'_> {
|
||||
CommandArgs { inner: self.inner.get_args() }
|
||||
}
|
||||
@ -1001,7 +1001,7 @@ impl Command {
|
||||
/// (OsStr::new("TZ"), None)
|
||||
/// ]);
|
||||
/// ```
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
pub fn get_envs(&self) -> CommandEnvs<'_> {
|
||||
self.inner.get_envs()
|
||||
}
|
||||
@ -1021,7 +1021,7 @@ impl Command {
|
||||
/// cmd.current_dir("/bin");
|
||||
/// assert_eq!(cmd.get_current_dir(), Some(Path::new("/bin")));
|
||||
/// ```
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
pub fn get_current_dir(&self) -> Option<&Path> {
|
||||
self.inner.get_current_dir()
|
||||
}
|
||||
@ -1053,13 +1053,13 @@ impl AsInnerMut<imp::Command> for Command {
|
||||
///
|
||||
/// This struct is created by [`Command::get_args`]. See its documentation for
|
||||
/// more.
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
#[derive(Debug)]
|
||||
pub struct CommandArgs<'a> {
|
||||
inner: imp::CommandArgs<'a>,
|
||||
}
|
||||
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
impl<'a> Iterator for CommandArgs<'a> {
|
||||
type Item = &'a OsStr;
|
||||
fn next(&mut self) -> Option<&'a OsStr> {
|
||||
@ -1070,7 +1070,7 @@ impl<'a> Iterator for CommandArgs<'a> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
impl<'a> ExactSizeIterator for CommandArgs<'a> {
|
||||
fn len(&self) -> usize {
|
||||
self.inner.len()
|
||||
|
@ -106,13 +106,13 @@ impl CommandEnv {
|
||||
/// This struct is created by
|
||||
/// [`Command::get_envs`][crate::process::Command::get_envs]. See its
|
||||
/// documentation for more.
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
#[derive(Debug)]
|
||||
pub struct CommandEnvs<'a> {
|
||||
iter: crate::collections::btree_map::Iter<'a, EnvKey, Option<OsString>>,
|
||||
}
|
||||
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
impl<'a> Iterator for CommandEnvs<'a> {
|
||||
type Item = (&'a OsStr, Option<&'a OsStr>);
|
||||
fn next(&mut self) -> Option<Self::Item> {
|
||||
@ -123,7 +123,7 @@ impl<'a> Iterator for CommandEnvs<'a> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "command_access", since = "1.56.0")]
|
||||
#[stable(feature = "command_access", since = "1.57.0")]
|
||||
impl<'a> ExactSizeIterator for CommandEnvs<'a> {
|
||||
fn len(&self) -> usize {
|
||||
self.iter.len()
|
||||
|
Loading…
Reference in New Issue
Block a user