2020-06-27 12:11:55 -03:00

415 B

Pointers

Rust is a low level low-level programming language and focus on high level code performance, for this is necessary a good memory management and this infers on the use of pointers. Pointers is a primitive type, that allows to access the memory address of a variable, or the value alocated on an specific address.

Book Sections