pub trait UnionWith<'a> {
// Required method
fn union_with(
self,
other: impl Into<Cow<'a, Set<'a>>>,
) -> UnionSetBuilder<'a>;
}Expand description
Trait to daisy-chain SetBuilders together into UnionSetBuilders.
Required Methods§
Sourcefn union_with(self, other: impl Into<Cow<'a, Set<'a>>>) -> UnionSetBuilder<'a>
fn union_with(self, other: impl Into<Cow<'a, Set<'a>>>) -> UnionSetBuilder<'a>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.