ruabmbua / hidapi-rs

Rust bindings for the hidapi C library
MIT License
167 stars 80 forks source link

write method not found #99

Closed LuggaFiech closed 1 year ago

LuggaFiech commented 1 year ago

Code snippet: image

The code snippet shown above returns the following error: image

lnicola commented 1 year ago

open returns a Result, you need to handle the potential error or call unwrap on it. I suggest giving the Rust book a read it you haven't already.