pub struct PrintData { /* private fields */ }
Expand description
Contains custom information for each print
Some instructions require custom information in order to get printed. The PrintData structure contains such custom information. The builder pattern is used to construct this structure, see PrintDataBuilder.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PrintData
impl<'de> Deserialize<'de> for PrintData
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
Auto Trait Implementations§
impl Freeze for PrintData
impl RefUnwindSafe for PrintData
impl Send for PrintData
impl Sync for PrintData
impl Unpin for PrintData
impl UnwindSafe for PrintData
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