Macrosยง
- feature ๐
- libc_bitflags ๐The
libc_bitflags!
macro helps with a common use case of defining a public bitflags type with values from the libc crate. It is used the same way as thebitflags!
macro, except that only the name of the flag value has to be given. - libc_enum ๐The
libc_enum!
macro helps with a common use case of defining an enum exclusively using values from thelibc
crate. This macro supports bothpub
and privateenum
s.