[−][src]Macro nom::complete 
replaces a Incomplete returned by the child parser
with an Error
    named!(take_5, complete!(take!(5)));
    let a = &b"abcd"[..];
    let res_a = take_5(a);
    assert_eq!(res_a, Err(Err::Error(error_position!(a, ErrorKind::Complete))));