[][src]Function is::is_strings

pub fn is_strings<V: Any + ?Sized>(_: &V) -> bool

Checks if 'static value is of type String

Examples

assert_eq!(is_strings(&String::from("42")), true);
assert_eq!(is_strings(&"42"), false);