Trait derive_attribute_utils::Concat
source · pub trait Concat: Sized {
const NO_DUPLICATES: bool = true;
// Provided method
fn concat(&mut self, other: Self) { ... }
}
Expand description
Combines an argument with a previously stored instance.
Provided Associated Constants§
sourceconst NO_DUPLICATES: bool = true
const NO_DUPLICATES: bool = true
Determines whether a duplicate is allowed or if an error should be thrown.
This logic is handled in the implementation for ArgResult
.
Typically only true for primitive types.