pub struct RepUtilization {
pub rep_id: String,
pub rep_name: String,
pub new_assignments: i64,
pub total_load: i64,
pub capacity: i64,
pub utilization_pct: f64,
}Expand description
Rep utilization statistics
Fields§
§rep_id: StringRep identifier
rep_name: StringRep name
new_assignments: i64Number of leads assigned in this routing
total_load: i64Total load after routing
capacity: i64Capacity
utilization_pct: f64Utilization percentage
Trait Implementations§
Source§impl Clone for RepUtilization
impl Clone for RepUtilization
Source§fn clone(&self) -> RepUtilization
fn clone(&self) -> RepUtilization
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 RepUtilization
impl Debug for RepUtilization
Source§impl<'de> Deserialize<'de> for RepUtilization
impl<'de> Deserialize<'de> for RepUtilization
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 RepUtilization
impl RefUnwindSafe for RepUtilization
impl Send for RepUtilization
impl Sync for RepUtilization
impl Unpin for RepUtilization
impl UnsafeUnpin for RepUtilization
impl UnwindSafe for RepUtilization
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