pub enum NiriReplyError {
IO(Error),
Niri(String),
}Variants§
IO(Error)
Fail to communicate with Niri because of IO error.
Niri(String)
Some error message from Niri.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NiriReplyError
impl !RefUnwindSafe for NiriReplyError
impl Send for NiriReplyError
impl Sync for NiriReplyError
impl Unpin for NiriReplyError
impl !UnwindSafe for NiriReplyError
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