bon/__/
better_errors.rs

1//! Utility functions for improving error messages in builder's generated code.
2//!
3//! These free functions are simple wrappers over the respective traits. They allow the
4//! generated code to pass the concrete type of the member using the turbofish syntax,
5//! which improves the compile errors when the member's type `T` doesn't implement
6//! the target trait.
7//!
8//! They improve the spans of error messages because compiler knows that it needs to
9//! point to the origin of the offending type (member's type T) from the turbofish
10//! syntax to where the type came from (original code written by the user).
11use core::fmt::Debug;
12
13#[inline(always)]
14pub fn clone_member<T: Clone>(member: &Option<T>) -> Option<T> {
15    member.clone()
16}
17
18#[inline(always)]
19pub fn as_dyn_debug<T: Debug>(member: &T) -> &dyn Debug {
20    member
21}
22
23#[inline(always)]
24pub fn copy_member<T: Copy>(member: &Option<T>) -> Option<T> {
25    *member
26}