The `drawer` component [Documentation](https://github.com/material-components/material-components-web-components/tree/master/packages/drawer)
| 28 | /// |
| 29 | /// [Documentation](https://github.com/material-components/material-components-web-components/tree/master/packages/drawer) |
| 30 | pub struct Drawer { |
| 31 | props: DrawerProps, |
| 32 | node_ref: NodeRef, |
| 33 | opened_listener: Option<EventListener>, |
| 34 | closed_listener: Option<EventListener>, |
| 35 | animation_frame: i32, |
| 36 | animation_timer: i32, |
| 37 | } |
| 38 | |
| 39 | pub enum DrawerMsg { |
| 40 | Open, |
nothing calls this directly
no outgoing calls
no test coverage detected