fn find_substr(haystack: &[u8], from: usize, needle: &[u8]) -> Option<usize>
Find the first occurrence of needle in haystack[from..]. Returns the absolute index in haystack, or None.
needle
haystack[from..]
haystack
None