Expand description
The enum Either with variants Left and Right is a general purpose
sum type with two cases.
Crate features:
- 
"std"Enabled by default. Disable to make the library#![no_std]. - 
"serde"Disabled by default. Enable to#[derive(Serialize, Deserialize)]forEither 
Re-exports§
Macros§
- for_
both  - Evaluate the provided expression for both 
Either::LeftandEither::Right. - try_
left  - Macro for unwrapping the left side of an 
Either, which fails early with the opposite side. Can only be used in functions that returnEitherbecause of the early return ofRightthat it provides. - try_
right  - Dual to 
try_left!, see its documentation for more information. 
Structs§
- Iter
Either  - Iterator that maps left or right iterators to corresponding 
Either-wrapped items. 
Enums§
- Either
 - The enum 
Eitherwith variantsLeftandRightis a general purpose sum type with two cases. 
Traits§
- Into
Either  - Provides methods for converting a type 
Selfinto either aLeftorRightvariant ofEither<Self, Self>.