pub struct Technician {
pub technician_id: Option<String>,
pub name: Option<String>,
}Expand description
Technician : A technician who is assigned to perform the service job in part or in full.
Fields§
§technician_id: Option<String>The technician identifier.
name: Option<String>The name of the technician.
Implementations§
Source§impl Technician
impl Technician
Sourcepub fn new() -> Technician
pub fn new() -> Technician
A technician who is assigned to perform the service job in part or in full.
Trait Implementations§
Source§impl Clone for Technician
impl Clone for Technician
Source§fn clone(&self) -> Technician
fn clone(&self) -> Technician
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 Technician
impl Debug for Technician
Source§impl Default for Technician
impl Default for Technician
Source§fn default() -> Technician
fn default() -> Technician
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Technician
impl<'de> Deserialize<'de> for Technician
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 Technician
impl PartialEq for Technician
Source§impl Serialize for Technician
impl Serialize for Technician
impl StructuralPartialEq for Technician
Auto Trait Implementations§
impl Freeze for Technician
impl RefUnwindSafe for Technician
impl Send for Technician
impl Sync for Technician
impl Unpin for Technician
impl UnwindSafe for Technician
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