pub enum LinuxDispatchRejection {
Saturated,
Closing,
}Expand description
Reason a callback could not reserve bounded asynchronous execution capacity.
Variants§
Saturated
Every configured in-flight permit was occupied.
Closing
The mount session is closing and accepts no new work.
Implementations§
Source§impl LinuxDispatchRejection
impl LinuxDispatchRejection
Sourcepub const fn error_code(self) -> LinuxErrorCode
pub const fn error_code(self) -> LinuxErrorCode
Returns the FUSE-visible portable error classification.
Trait Implementations§
Source§impl Clone for LinuxDispatchRejection
impl Clone for LinuxDispatchRejection
Source§fn clone(&self) -> LinuxDispatchRejection
fn clone(&self) -> LinuxDispatchRejection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LinuxDispatchRejection
impl Debug for LinuxDispatchRejection
Source§impl PartialEq for LinuxDispatchRejection
impl PartialEq for LinuxDispatchRejection
impl Copy for LinuxDispatchRejection
impl Eq for LinuxDispatchRejection
impl StructuralPartialEq for LinuxDispatchRejection
Auto Trait Implementations§
impl Freeze for LinuxDispatchRejection
impl RefUnwindSafe for LinuxDispatchRejection
impl Send for LinuxDispatchRejection
impl Sync for LinuxDispatchRejection
impl Unpin for LinuxDispatchRejection
impl UnwindSafe for LinuxDispatchRejection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more