rCore-Tutorial-v3/ch6/volatile/sidebar-items.js

1 line
565 B
JavaScript
Raw Normal View History

initSidebarItems({"struct":[["ReadOnly","A volatile wrapper which only allows read operations."],["Volatile","A wrapper type around a volatile variable, which allows for volatile reads and writes to the contained value. The stored type needs to be `Copy`, as volatile reads and writes take and return copies of the value."],["WriteOnly","A volatile wrapper which only allows write operations."]],"type":[["ReadWrite","A volatile wrapper which allows both read and write operations; functionally equivalent to the `Volatile` type, as it is a type alias for it."]]});