Opposite term for "dynamically sized type"

When I take notes on what I have learned about Rust, I sometimes feel the need for a term meaning a type whose size is known at compile time.

I searched for "statically sized type" and "SST" on Introduction - The Rust Reference, but they don't appear to be used.

Is there any opposite term for "dynamically sized type"?

That's just "Sized".

1 Like

OK, thanks.