macro_rules! impl_validated_constructors {
($StructName:ident, $PolicyType:ident, $RawType:ident) => { ... };
}Expand description
Implements constructor traits and methods: TryNewValidated, TryNew, new() (deprecated), new_unchecked().
TryNewValidated: Always validates (fromtry_createcrate)TryNew: Alias forTryNewValidated(fromtry_createcrate)new(): DEPRECATED - Always validates and panics on failure. Usetry_new()instead.new_unchecked(): UNSAFE - Validates only in debug builds, zero-cost in release.
§Example
ⓘ
impl_validated_constructors!(MyType, RealPolicy, RawReal);