Skip to content

Instantly share code, notes, and snippets.

@mohno007
Created December 7, 2018 08:28
Show Gist options
  • Select an option

  • Save mohno007/099cc65ee0c2e9464047f859a383507a to your computer and use it in GitHub Desktop.

Select an option

Save mohno007/099cc65ee0c2e9464047f859a383507a to your computer and use it in GitHub Desktop.
struct Obj {
value: i64
}
fn main() {
let x = Obj { value: 1 };
// x.value = 2; // 無理
let mut y = Obj { value: 1 };
y.value = 2;
assert!(y.value == 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment