skip
When attached to a pub
struct field this indicates that field will not be exposed to JavaScript,
and neither getter nor setter will be generated in ES6 class.
Here the bar
field will be both readable and writable from JS, but the
baz
field will be undefined
in JS.
import('./pkg/').then(rust => {
let foo = rust.Foo.new();
// bar is accessible by getter
console.log(foo.bar);
// field marked with `skip` is undefined
console.log(foo.baz);
// you can shadow it
foo.baz = 45;
// so accessing by getter will return `45`
// but it won't affect real value in rust memory
console.log(foo.baz);
});