pub struct JobAssignment {
pub job_id: String,
pub title: String,
pub description: String,
pub price: f64,
pub client_name: String,
}Expand description
Job assignment notification
Fields§
§job_id: String§title: String§description: String§price: f64§client_name: StringTrait Implementations§
Source§impl Clone for JobAssignment
impl Clone for JobAssignment
Source§fn clone(&self) -> JobAssignment
fn clone(&self) -> JobAssignment
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 moreAuto Trait Implementations§
impl Freeze for JobAssignment
impl RefUnwindSafe for JobAssignment
impl Send for JobAssignment
impl Sync for JobAssignment
impl Unpin for JobAssignment
impl UnsafeUnpin for JobAssignment
impl UnwindSafe for JobAssignment
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