Home
last modified time | relevance | path

Searched refs:BadFdError (Results 1 – 1 of 1) sorted by relevance

/linux-6.15/rust/kernel/fs/
H A Dfile.rs253 pub fn fget(fd: u32) -> Result<ARef<LocalFile>, BadFdError> { in fget() argument
255 let ptr = ptr::NonNull::new(unsafe { bindings::fget(fd) }).ok_or(BadFdError)?; in fget()
452 pub struct BadFdError; struct
454 impl From<BadFdError> for Error {
456 fn from(_: BadFdError) -> Error { in from()
461 impl core::fmt::Debug for BadFdError { implementation