pub trait PayloadAttributesBuilder<Attributes>: Send + Sync + 'static { // Required method fn build(&self, timestamp: u64) -> Attributes; }
A builder that can return the current payload attribute.
Return a new payload attribute from the builder.