1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#![forbid(unsafe_code, future_incompatible)]
#![deny(missing_debug_implementations, bad_style)]
#![warn(missing_docs)]
#![cfg_attr(test, deny(warnings))]
use std::env::{Args as StdArgs, ArgsOs as StdArgsOs};
use std::ffi::OsString;
use std::fmt;
use std::iter::Iterator;
#[doc(inline)]
#[cfg(not(test))]
pub use paw_attributes::main;
#[doc(inline)]
pub use paw_raw::ParseArgs;
pub struct Args {
inner: StdArgs,
}
impl fmt::Debug for Args {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.inner.fmt(f)
}
}
impl Iterator for Args {
type Item = String;
fn next(&mut self) -> Option<Self::Item> {
self.inner.next()
}
}
impl ExactSizeIterator for Args {
fn len(&self) -> usize {
self.inner.len()
}
}
impl DoubleEndedIterator for Args {
fn next_back(&mut self) -> Option<String> {
self.inner.next_back()
}
}
impl ParseArgs for Args {
type Error = std::io::Error;
fn parse_args() -> Result<Self, Self::Error> {
Ok(Self {
inner: std::env::args(),
})
}
}
pub struct ArgsOs {
inner: StdArgsOs,
}
impl fmt::Debug for ArgsOs {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.inner.fmt(f)
}
}
impl Iterator for ArgsOs {
type Item = OsString;
fn next(&mut self) -> Option<Self::Item> {
self.inner.next()
}
}
impl ExactSizeIterator for ArgsOs {
fn len(&self) -> usize {
self.inner.len()
}
}
impl DoubleEndedIterator for ArgsOs {
fn next_back(&mut self) -> Option<OsString> {
self.inner.next_back()
}
}
impl ParseArgs for ArgsOs {
type Error = std::io::Error;
fn parse_args() -> Result<Self, Self::Error> {
Ok(Self {
inner: std::env::args_os(),
})
}
}