pub struct ApprovalLimitDistribution {
pub staff: f64,
pub senior: f64,
pub manager: f64,
pub director: f64,
pub vp: f64,
pub executive: f64,
}Expand description
Approval limit distribution by job level.
Fields§
§staff: f64Staff level approval limit
senior: f64Senior staff approval limit
manager: f64Manager approval limit
director: f64Director approval limit
vp: f64VP approval limit
executive: f64Executive approval limit
Trait Implementations§
Source§impl Clone for ApprovalLimitDistribution
impl Clone for ApprovalLimitDistribution
Source§fn clone(&self) -> ApprovalLimitDistribution
fn clone(&self) -> ApprovalLimitDistribution
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 ApprovalLimitDistribution
impl Debug for ApprovalLimitDistribution
Source§impl Default for ApprovalLimitDistribution
impl Default for ApprovalLimitDistribution
Source§impl<'de> Deserialize<'de> for ApprovalLimitDistribution
impl<'de> Deserialize<'de> for ApprovalLimitDistribution
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 ApprovalLimitDistribution
impl RefUnwindSafe for ApprovalLimitDistribution
impl Send for ApprovalLimitDistribution
impl Sync for ApprovalLimitDistribution
impl Unpin for ApprovalLimitDistribution
impl UnwindSafe for ApprovalLimitDistribution
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