1use crate::errors::MobileNetworkError; 2 3pub trait Validate { 4 fn validate(&self, number: &str) -> Result<bool, MobileNetworkError>; 5 }