1 2 3 4 5 6 7 8 9 10
extern crate custom_error;
use custom_error::custom_error;
custom_error! {pub ValidateError
InvalidLength = "Invalid length detected.",
NoSpecialChars = "No special chars present.",
NoUpperCase = "No uppercase chars present.",
NoLowerCase = "No lowercase chars present.",
NoNumbers = "No number chars present.",
}