pub enum FcntlArg<'a> {
F_DUPFD(RawFd),
F_DUPFD_CLOEXEC(RawFd),
F_GETFD,
F_SETFD(FdFlag),
F_GETFL,
F_SETFL(OFlag),
F_SETLK(&'a flock),
F_SETLKW(&'a flock),
F_GETLK(&'a mut flock),
F_OFD_SETLK(&'a flock),
F_OFD_SETLKW(&'a flock),
F_OFD_GETLK(&'a mut flock),
F_ADD_SEALS(SealFlag),
F_GET_SEALS,
}Variants
F_DUPFD | |
F_DUPFD_CLOEXEC | |
F_GETFD | |
F_SETFD | |
F_GETFL | |
F_SETFL | |
F_SETLK | |
F_SETLKW | |
F_GETLK | |
F_OFD_SETLK | |
F_OFD_SETLKW | |
F_OFD_GETLK | |
F_ADD_SEALS | |
F_GET_SEALS | |
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct, enum,
trait, typedef (or
tdef).
Search functions by type signature (e.g.
vec -> usize)