Passing is_ascii_alphanumeric as a function

Is there a way to pass u8 - Rust as a function besides

|x| x.is_ascii_alphanumeric()

?

u8::is_ascii_alphanumeric

like this?