pub struct JobWithDetails {
pub job: Job,
pub client_name: Option<String>,
pub agent_creator_name: Option<String>,
pub creator_name: String,
pub agent_name: Option<String>,
pub bid_count: i64,
}Fields§
§job: Job§client_name: Option<String>§agent_creator_name: Option<String>§creator_name: String§agent_name: Option<String>§bid_count: i64Trait Implementations§
Source§impl Clone for JobWithDetails
impl Clone for JobWithDetails
Source§fn clone(&self) -> JobWithDetails
fn clone(&self) -> JobWithDetails
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 JobWithDetails
impl Debug for JobWithDetails
Source§impl<'de> Deserialize<'de> for JobWithDetails
impl<'de> Deserialize<'de> for JobWithDetails
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 JobWithDetails
impl RefUnwindSafe for JobWithDetails
impl Send for JobWithDetails
impl Sync for JobWithDetails
impl Unpin for JobWithDetails
impl UnsafeUnpin for JobWithDetails
impl UnwindSafe for JobWithDetails
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