<-home

Understanding String Types in Rust and Go

Table of Contents

Strings in Rust

&str – String Slice

let s = "hello"; // &str
  • Immutable, read-only reference to a string
  • Stored in static memory (binary section)
  • Does not use the heap
let s = "hello"; 
// s points to the memory address of the "hello" string

s = "bye";
// s now points to a new memory address for "bye"
// The value isn't modified — the reference changes

// diagram
// "string type variable only points to the memory address"
// s -> 0x1234["hello"] 
// s -> 0x5678["bye"]

String – Heap-Allocated Mutable String

let mut s = String::from("hello");
  • Mutable, owns the data
  • Stored on the heap
  • You can modify it using methods like .push_str() and .clear()
let s1 = String::new(); 
// creates an empty string

s1 = String::from("hello"); // compile error — not mutable

let mut s2 = String::new(); // mutable

s2 = String::from("hello");
s2.push_str(" world");      // "hello world"

Strings in Go

string

test := "first"
test = "second"
  • Immutable value type
  • Internally, a string is just a struct with a byte pointer and length:
type string struct {
    data *byte
    len  int
}
  • Assigning a new string creates a new string object in memory
  • You cannot modify part of a string directly

How to “Modify” Strings in Go

To modify a string in Go, convert it into a mutable byte slice:

s := "hello"
b := []byte(s)   // Convert to byte slice
b[0] = 'H'       // Modify
s2 := string(b)  // Convert back to string

fmt.Println(s2)  // "Hello"

Rust vs Go: Strings at a Glance

Concept Go Rust
Immutable string string &str
Mutable string (heap allocated) []byte, []rune String
Modify string variable (new value) s = “new” s = String::from(...)
Modify string content via []byte conversion via mutable String

Conclusion

  • In both Rust and Go, default strings are immutable — they point to memory, but do not allow direct content modification.
  • To change the content of a string:
    • In Rust, use a mutable String
    • In Go, convert to []byte or []rune
  • If you’re just changing the entire string value, you’re assigning a new memory reference either way.
  • Rust gives more fine-grained control over memory and mutability, while Go keeps things simple but less flexible when it comes to string manipulation.