Phone-type

This crate contains the Phone type, who is only a String wrapper and uses phone-number-verifier to valid the phone's format.

Example ```rust use phone_type::*;

let phoneresult = Phone::new("111-111-1111"); assert!(phoneresult.is_ok());

let phoneresult = Phone::newwithcountry("+52 111 111 1111"); assert!(phoneresult.is_ok(), "Invalid phone with country code"); ```