pub struct PrinterStateChangedArgs<'s> {
pub printer_id: &'s str,
pub printer_state: &'s str,
pub printer_is_accepting_jobs: bool,
pub backend_name: &'s str,
/* private fields */
}Available on crate feature
zbus-backend only.Expand description
PrinterStateChanged signal arguments.
Fields§
§printer_id: &'s str§printer_state: &'s str§printer_is_accepting_jobs: bool§backend_name: &'s strImplementations§
Source§impl<'s> PrinterStateChangedArgs<'s>
impl<'s> PrinterStateChangedArgs<'s>
pub fn printer_id(&self) -> &&'s str
pub fn printer_state(&self) -> &&'s str
pub fn printer_is_accepting_jobs(&self) -> &bool
pub fn backend_name(&self) -> &&'s str
Trait Implementations§
Source§impl<'s> Debug for PrinterStateChangedArgs<'s>
impl<'s> Debug for PrinterStateChangedArgs<'s>
Auto Trait Implementations§
impl<'s> Freeze for PrinterStateChangedArgs<'s>
impl<'s> RefUnwindSafe for PrinterStateChangedArgs<'s>
impl<'s> Send for PrinterStateChangedArgs<'s>
impl<'s> Sync for PrinterStateChangedArgs<'s>
impl<'s> Unpin for PrinterStateChangedArgs<'s>
impl<'s> UnsafeUnpin for PrinterStateChangedArgs<'s>
impl<'s> UnwindSafe for PrinterStateChangedArgs<'s>
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