#[repr(C)]pub struct Print_PrinterInfo {
pub printerState: Print_PrinterState,
pub capability: Print_PrinterCapability,
pub defaultValue: Print_DefaultValue,
pub isDefaultPrinter: bool,
pub printerId: *mut c_char,
pub printerName: *mut c_char,
pub description: *mut c_char,
pub location: *mut c_char,
pub makeAndModel: *mut c_char,
pub printerUri: *mut c_char,
pub detailInfo: *mut c_char,
}Available on crate features
print and api-12 only.Expand description
Indicates printer information.
Available since API-level: 12
Fields§
§printerState: Print_PrinterStatePrinter state.
capability: Print_PrinterCapabilityPrinter capabilities.
defaultValue: Print_DefaultValuePrinter current properties.
isDefaultPrinter: boolDefault printer.
printerId: *mut c_charPrinter id.
printerName: *mut c_charPrinter name.
description: *mut c_charPrinter description.
location: *mut c_charPrinter location.
makeAndModel: *mut c_charPrinter make and model information.
printerUri: *mut c_charPrinter Uri.
detailInfo: *mut c_charDetail information in json format.
Trait Implementations§
Source§impl Clone for Print_PrinterInfo
impl Clone for Print_PrinterInfo
Source§fn clone(&self) -> Print_PrinterInfo
fn clone(&self) -> Print_PrinterInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Print_PrinterInfo
impl Debug for Print_PrinterInfo
impl Copy for Print_PrinterInfo
Auto Trait Implementations§
impl Freeze for Print_PrinterInfo
impl RefUnwindSafe for Print_PrinterInfo
impl !Send for Print_PrinterInfo
impl !Sync for Print_PrinterInfo
impl Unpin for Print_PrinterInfo
impl UnsafeUnpin for Print_PrinterInfo
impl UnwindSafe for Print_PrinterInfo
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