Help with understanding Rust syntax

type Result<T = Response> = Result<T, Error>;

What does T = Response mean here? Thanks.
Link

See Advanced Traits - The Rust Programming Language

Thanks. I didn't know what to google for. :slight_smile:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.