You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever a pointer is mutated, *mut should be used instead of *const. This makes it easier to catch bugs that conflicts with the borrowing rules in Rust at higher level, such as #60
The text was updated successfully, but these errors were encountered:
Whenever a pointer is mutated,
*mut
should be used instead of*const
. This makes it easier to catch bugs that conflicts with the borrowing rules in Rust at higher level, such as #60The text was updated successfully, but these errors were encountered: