#[repr(C)]pub struct print_job_info {
pub id: c_ushort,
pub priority: c_ushort,
pub size: size_t,
pub user: [c_char; 128],
pub name: [c_char; 128],
pub t: time_t,
}Fields§
§id: c_ushortnumeric ID of the print job
priority: c_ushortrepresents print job priority (lower numbers mean higher priority)
size: size_tSize of the print job
user: [c_char; 128]Name of the user that owns the print job
name: [c_char; 128]Name of the print job. This will have no name if an anonymous print file was opened. Ie smb://server/printer
t: time_tTime the print job was spooled
Trait Implementations§
Source§impl Clone for print_job_info
impl Clone for print_job_info
Source§impl Default for print_job_info
impl Default for print_job_info
impl Copy for print_job_info
Auto Trait Implementations§
impl Freeze for print_job_info
impl RefUnwindSafe for print_job_info
impl Send for print_job_info
impl Sync for print_job_info
impl Unpin for print_job_info
impl UnwindSafe for print_job_info
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