Skip to main content

oxilean_std/either/
eithertraversal_traits.rs

1//! # EitherTraversal - Trait Implementations
2//!
3//! This module contains trait implementations for `EitherTraversal`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::EitherTraversal;
12
13#[allow(dead_code)]
14impl<A, B> Default for EitherTraversal<A, B> {
15    fn default() -> Self {
16        Self::new()
17    }
18}