Open
Description
I'm porting some code from C to Rust, and it is frequently using None
to compare against Window
or Atom
. In the X11/X.h
None
is defined to be 0
by preprocessor macro. Currently i compare values against 0
, but that doesn't seem like a good idea. What is the reason behind None
not being in the API ?