use anyinput::anyinput; #[anyinput(not_empty)] pub fn any_str_len(s: AnyIter(AnyString)) -> Result { let len = s.len(); Ok(len) } fn main() {}