我的情况是这样的,我只想获取WebGlContextAttributes
struct的字段。
let antialias_info = gl.get_context_attributes().unwrap();
match antialias_info.antialias {
// ...
}
我收到以下错误:
attempted to take value of method `antialias` on type `web_sys::WebGlContextAttributes` method, not a field.
而且我已经阅读了文档WebGlContextAttributes,但仍然不知道如何获取它的字段值。