.capacity()

let rand = String::from("Random String"); rand.capacity() // => 13 

Calculates the capacity of the string in bytes.

Comments