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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
use std::{
    borrow::Cow,
    convert::Infallible,
    env::VarError,
    ffi::{OsStr, OsString},
    fmt::Alignment,
    io::{ErrorKind, SeekFrom},
    net::{IpAddr, Ipv4Addr, Ipv6Addr, Shutdown, SocketAddr, SocketAddrV4, SocketAddrV6},
    num::FpCategory,
    ops::Bound,
    path::{Component, Prefix, PrefixComponent},
    sync::{
        mpsc::{RecvTimeoutError, TryRecvError, TrySendError},
        PoisonError, TryLockError,
    },
};
use vesta_macro::derive_match;

derive_match! {
    pub enum Infallible {}
}

derive_match! {
    enum Option<T> {
        None,
        Some(T),
    }
}

derive_match! {
    enum Result<T, E> {
        Ok(T),
        Err(E),
    }
}

derive_match! {
    enum Cow<'a, B> where B: 'a + ToOwned + ?Sized {
        Borrowed(&'a B),
        Owned(<B as ToOwned>::Owned),
    }
}

derive_match! {
    pub enum VarError {
        NotPresent,
        NotUnicode(OsString),
    }
}

derive_match! {
    pub enum SeekFrom {
        Start(u64),
        End(i64),
        Current(i64),
    }
}

derive_match! {
    pub enum Bound<T> {
        Included(T),
        Excluded(T),
        Unbounded,
    }
}

derive_match! {
    pub enum IpAddr {
        V4(Ipv4Addr),
        V6(Ipv6Addr),
    }
}

derive_match! {
    pub enum SocketAddr {
        V4(SocketAddrV4),
        V6(SocketAddrV6),
    }
}

derive_match! {
    pub enum Shutdown {
        Read,
        Write,
        Both,
    }
}

derive_match! {
    pub enum TryLockError<T> {
        Poisoned(PoisonError<T>),
        WouldBlock,
    }
}

derive_match! {
    pub enum TryRecvError {
        Empty,
        Disconnected,
    }
}

derive_match! {
    pub enum RecvTimeoutError {
        Timeout,
        Disconnected,
    }
}

derive_match! {
    pub enum TrySendError<T> {
        Full(T),
        Disconnected(T),
    }
}

derive_match! {
    pub enum FpCategory {
        Nan,
        Infinite,
        Zero,
        Subnormal,
        Normal,
    }
}

derive_match! {
    pub enum Alignment {
        Left,
        Right,
        Center,
    }
}

derive_match! {
    pub enum Prefix<'a> {
        Verbatim(&'a OsStr),
        VerbatimUNC(&'a OsStr, &'a OsStr),
        VerbatimDisk(u8),
        DeviceNS(&'a OsStr),
        UNC(&'a OsStr, &'a OsStr),
        Disk(u8),
    }
}

derive_match! {
    pub enum Component<'a> {
        Prefix(PrefixComponent<'a>),
        RootDir,
        CurDir,
        ParentDir,
        Normal(&'a OsStr),
    }
}

derive_match! {
    #[non_exhaustive]
    pub enum ErrorKind {
        NotFound,
        PermissionDenied,
        ConnectionRefused,
        ConnectionReset,
        ConnectionAborted,
        NotConnected,
        AddrInUse,
        AddrNotAvailable,
        BrokenPipe,
        AlreadyExists,
        WouldBlock,
        InvalidInput,
        InvalidData,
        TimedOut,
        WriteZero,
        Interrupted,
        Other,
        UnexpectedEof,
    }
}

mod cmp {
    use super::*;
    use std::cmp::Ordering;

    derive_match! {
        pub enum Ordering {
            Less,
            Equal,
            Greater,
        }
    }
}

mod atomic {
    use super::*;
    use std::sync::atomic::Ordering;

    derive_match! {
        #[non_exhaustive]
        pub enum Ordering {
            Relaxed,
            Release,
            Acquire,
            AcqRel,
            SeqCst,
        }
    }
}

mod btree_map {
    use super::*;
    use std::collections::btree_map::*;

    derive_match! {
        pub enum Entry<'a, K, V>
        where
            K: 'a,
            V: 'a,
        {
            Vacant(VacantEntry<'a, K, V>),
            Occupied(OccupiedEntry<'a, K, V>),
        }
    }
}

mod hash_map {
    use super::*;
    use std::collections::hash_map::*;

    derive_match! {
        pub enum Entry<'a, K, V>
        where
            K: 'a,
            V: 'a,
        {
            Vacant(VacantEntry<'a, K, V>),
            Occupied(OccupiedEntry<'a, K, V>),
        }
    }
}