pub struct CashTypeDispenseHistory { /* private fields */ }Expand description
Represents the dispense history of each CashType
Implementations§
Source§impl CashTypeDispenseHistory
impl CashTypeDispenseHistory
Sourcepub const fn new() -> CashTypeDispenseHistory
pub const fn new() -> CashTypeDispenseHistory
Creates a new CashTypeDispenseHistory.
Sourcepub const fn cash_type(&self) -> &CashType
pub const fn cash_type(&self) -> &CashType
Gets the CashType for CashTypeDispenseHistory.
Sourcepub fn set_cash_type(&mut self, val: CashType)
pub fn set_cash_type(&mut self, val: CashType)
Sets the CashType for CashTypeDispenseHistory.
Sourcepub fn with_cash_type(self, val: CashType) -> CashTypeDispenseHistory
pub fn with_cash_type(self, val: CashType) -> CashTypeDispenseHistory
Builder function that sets the CashType for CashTypeDispenseHistory.
Sourcepub const fn bill_requested_count(&self) -> &BillRequestedCount
pub const fn bill_requested_count(&self) -> &BillRequestedCount
Gets the BillRequestedCount for CashTypeDispenseHistory.
Sourcepub fn set_bill_requested_count(&mut self, val: BillRequestedCount)
pub fn set_bill_requested_count(&mut self, val: BillRequestedCount)
Sets the BillRequestedCount for CashTypeDispenseHistory.
Sourcepub fn with_bill_requested_count(
self,
val: BillRequestedCount,
) -> CashTypeDispenseHistory
pub fn with_bill_requested_count( self, val: BillRequestedCount, ) -> CashTypeDispenseHistory
Builder function that sets the BillRequestedCount for CashTypeDispenseHistory.
Sourcepub const fn bill_not_available_count(&self) -> &BillNotAvailableCount
pub const fn bill_not_available_count(&self) -> &BillNotAvailableCount
Gets the BillNotAvailableCount for CashTypeDispenseHistory.
Sourcepub fn set_bill_not_available_count(&mut self, val: BillNotAvailableCount)
pub fn set_bill_not_available_count(&mut self, val: BillNotAvailableCount)
Sets the BillNotAvailableCount for CashTypeDispenseHistory.
Sourcepub fn with_bill_not_available_count(
self,
val: BillNotAvailableCount,
) -> CashTypeDispenseHistory
pub fn with_bill_not_available_count( self, val: BillNotAvailableCount, ) -> CashTypeDispenseHistory
Builder function that sets the BillNotAvailableCount for CashTypeDispenseHistory.
Trait Implementations§
Source§impl Clone for CashTypeDispenseHistory
impl Clone for CashTypeDispenseHistory
Source§fn clone(&self) -> CashTypeDispenseHistory
fn clone(&self) -> CashTypeDispenseHistory
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 CashTypeDispenseHistory
impl Debug for CashTypeDispenseHistory
Source§impl Default for CashTypeDispenseHistory
impl Default for CashTypeDispenseHistory
Source§fn default() -> CashTypeDispenseHistory
fn default() -> CashTypeDispenseHistory
Returns the “default value” for a type. Read more
Source§impl Display for CashTypeDispenseHistory
impl Display for CashTypeDispenseHistory
Source§impl From<&CashTypeDispenseHistory> for XfsMember
impl From<&CashTypeDispenseHistory> for XfsMember
Source§fn from(val: &CashTypeDispenseHistory) -> XfsMember
fn from(val: &CashTypeDispenseHistory) -> XfsMember
Converts to this type from the input type.
Source§impl From<&CashTypeDispenseHistory> for XfsStruct
impl From<&CashTypeDispenseHistory> for XfsStruct
Source§fn from(val: &CashTypeDispenseHistory) -> XfsStruct
fn from(val: &CashTypeDispenseHistory) -> XfsStruct
Converts to this type from the input type.
Source§impl From<&CashTypeDispenseHistory> for XfsValue
impl From<&CashTypeDispenseHistory> for XfsValue
Source§fn from(val: &CashTypeDispenseHistory) -> XfsValue
fn from(val: &CashTypeDispenseHistory) -> XfsValue
Converts to this type from the input type.
Source§impl From<CashTypeDispenseHistory> for XfsMember
impl From<CashTypeDispenseHistory> for XfsMember
Source§fn from(val: CashTypeDispenseHistory) -> XfsMember
fn from(val: CashTypeDispenseHistory) -> XfsMember
Converts to this type from the input type.
Source§impl From<CashTypeDispenseHistory> for XfsStruct
impl From<CashTypeDispenseHistory> for XfsStruct
Source§fn from(val: CashTypeDispenseHistory) -> XfsStruct
fn from(val: CashTypeDispenseHistory) -> XfsStruct
Converts to this type from the input type.
Source§impl From<CashTypeDispenseHistory> for XfsValue
impl From<CashTypeDispenseHistory> for XfsValue
Source§fn from(val: CashTypeDispenseHistory) -> XfsValue
fn from(val: CashTypeDispenseHistory) -> XfsValue
Converts to this type from the input type.
Source§impl PartialEq for CashTypeDispenseHistory
impl PartialEq for CashTypeDispenseHistory
Source§impl TryFrom<&XfsMember> for CashTypeDispenseHistory
impl TryFrom<&XfsMember> for CashTypeDispenseHistory
Source§impl TryFrom<&XfsStruct> for CashTypeDispenseHistory
impl TryFrom<&XfsStruct> for CashTypeDispenseHistory
Source§impl TryFrom<&XfsValue> for CashTypeDispenseHistory
impl TryFrom<&XfsValue> for CashTypeDispenseHistory
Source§impl TryFrom<XfsMember> for CashTypeDispenseHistory
impl TryFrom<XfsMember> for CashTypeDispenseHistory
Source§impl TryFrom<XfsStruct> for CashTypeDispenseHistory
impl TryFrom<XfsStruct> for CashTypeDispenseHistory
Source§impl TryFrom<XfsValue> for CashTypeDispenseHistory
impl TryFrom<XfsValue> for CashTypeDispenseHistory
impl StructuralPartialEq for CashTypeDispenseHistory
Auto Trait Implementations§
impl Freeze for CashTypeDispenseHistory
impl RefUnwindSafe for CashTypeDispenseHistory
impl Send for CashTypeDispenseHistory
impl Sync for CashTypeDispenseHistory
impl Unpin for CashTypeDispenseHistory
impl UnwindSafe for CashTypeDispenseHistory
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