pub trait Validate { type Error; // Required method fn validate(&self) -> Result<(), Self::Error>; }
Validate
Re-check constructor invariants on decoded DTOs before they become authoritative.
Validation error for this DTO.
Validate this value’s domain invariants.