pub struct BarcodeLabel {
pub id: String,
pub barcode_type: String,
pub entity_id: String,
pub barcode_format: String,
pub barcode_value: String,
pub label_text: Vec<String>,
pub generated_at: String,
}Fields§
§id: String§barcode_type: String§entity_id: String§barcode_format: String§barcode_value: String§label_text: Vec<String>§generated_at: StringTrait Implementations§
Source§impl Clone for BarcodeLabel
impl Clone for BarcodeLabel
Source§fn clone(&self) -> BarcodeLabel
fn clone(&self) -> BarcodeLabel
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 BarcodeLabel
impl Debug for BarcodeLabel
Source§impl<'de> Deserialize<'de> for BarcodeLabel
impl<'de> Deserialize<'de> for BarcodeLabel
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 BarcodeLabel
impl RefUnwindSafe for BarcodeLabel
impl Send for BarcodeLabel
impl Sync for BarcodeLabel
impl Unpin for BarcodeLabel
impl UnsafeUnpin for BarcodeLabel
impl UnwindSafe for BarcodeLabel
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