check if string is empty rust code example
Example: rust test if string is empty
assert_eq!("".is_empty(), true);
assert_eq!(String::new().is_empty(), true);
assert_eq!("".is_empty(), true);
assert_eq!(String::new().is_empty(), true);