Open Dexus0 opened 6 days ago
Could you clarify what you would like to be implemented?
In Rust, you cannot rename the name you import a type as; for example:
use std::vec::Vec as Array; struct foo<T> { vec: Array<T>, }
You cannot rename the Array type here.
Array
Could you clarify what you would like to be implemented?