pub struct PrinterController {
pub id: Option<i32>,
pub software: Option<Box<SoftwareEnum>>,
pub deleted: Option<String>,
pub created_dt: Option<String>,
pub updated_dt: Option<String>,
pub polymorphic_ctype: Option<i32>,
pub user: i32,
pub device: i32,
}Fields§
§id: Option<i32>§software: Option<Box<SoftwareEnum>>§deleted: Option<String>§created_dt: Option<String>§updated_dt: Option<String>§polymorphic_ctype: Option<i32>§user: i32§device: i32Implementations§
Source§impl PrinterController
impl PrinterController
pub fn new(user: i32, device: i32) -> PrinterController
Trait Implementations§
Source§impl Clone for PrinterController
impl Clone for PrinterController
Source§fn clone(&self) -> PrinterController
fn clone(&self) -> PrinterController
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 PrinterController
impl Debug for PrinterController
Source§impl Default for PrinterController
impl Default for PrinterController
Source§fn default() -> PrinterController
fn default() -> PrinterController
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrinterController
impl<'de> Deserialize<'de> for PrinterController
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PrinterController
impl PartialEq for PrinterController
Source§impl Serialize for PrinterController
impl Serialize for PrinterController
impl StructuralPartialEq for PrinterController
Auto Trait Implementations§
impl Freeze for PrinterController
impl RefUnwindSafe for PrinterController
impl Send for PrinterController
impl Sync for PrinterController
impl Unpin for PrinterController
impl UnwindSafe for PrinterController
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