pub struct MaxOutBills(/* private fields */);Expand description
Maximum number of bills to be dispensed by one command. Equals to 20 in BNA6 configuration, otherwise equals to 15.
Implementations§
Source§impl MaxOutBills
impl MaxOutBills
Sourcepub const fn new() -> MaxOutBills
pub const fn new() -> MaxOutBills
Creates a new MaxOutBills.
Sourcepub const fn create(val: u32) -> MaxOutBills
pub const fn create(val: u32) -> MaxOutBills
Creates a new MaxOutBills from the provided parameter.
Sourcepub fn into_inner(self) -> u32
pub fn into_inner(self) -> u32
Converts into the inner representation of MaxOutBills.
Trait Implementations§
Source§impl Clone for MaxOutBills
impl Clone for MaxOutBills
Source§fn clone(&self) -> MaxOutBills
fn clone(&self) -> MaxOutBills
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 MaxOutBills
impl Debug for MaxOutBills
Source§impl Default for MaxOutBills
impl Default for MaxOutBills
Source§fn default() -> MaxOutBills
fn default() -> MaxOutBills
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MaxOutBills
impl<'de> Deserialize<'de> for MaxOutBills
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MaxOutBills, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MaxOutBills, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for MaxOutBills
impl Display for MaxOutBills
Source§impl From<&MaxOutBills> for XfsMember
impl From<&MaxOutBills> for XfsMember
Source§fn from(val: &MaxOutBills) -> XfsMember
fn from(val: &MaxOutBills) -> XfsMember
Converts to this type from the input type.
Source§impl From<&MaxOutBills> for XfsValue
impl From<&MaxOutBills> for XfsValue
Source§fn from(val: &MaxOutBills) -> XfsValue
fn from(val: &MaxOutBills) -> XfsValue
Converts to this type from the input type.
Source§impl From<&i32> for MaxOutBills
impl From<&i32> for MaxOutBills
Source§fn from(val: &i32) -> MaxOutBills
fn from(val: &i32) -> MaxOutBills
Converts to this type from the input type.
Source§impl From<&u32> for MaxOutBills
impl From<&u32> for MaxOutBills
Source§fn from(val: &u32) -> MaxOutBills
fn from(val: &u32) -> MaxOutBills
Converts to this type from the input type.
Source§impl From<MaxOutBills> for XfsMember
impl From<MaxOutBills> for XfsMember
Source§fn from(val: MaxOutBills) -> XfsMember
fn from(val: MaxOutBills) -> XfsMember
Converts to this type from the input type.
Source§impl From<MaxOutBills> for XfsValue
impl From<MaxOutBills> for XfsValue
Source§fn from(val: MaxOutBills) -> XfsValue
fn from(val: MaxOutBills) -> XfsValue
Converts to this type from the input type.
Source§impl From<i32> for MaxOutBills
impl From<i32> for MaxOutBills
Source§fn from(val: i32) -> MaxOutBills
fn from(val: i32) -> MaxOutBills
Converts to this type from the input type.
Source§impl From<u32> for MaxOutBills
impl From<u32> for MaxOutBills
Source§fn from(val: u32) -> MaxOutBills
fn from(val: u32) -> MaxOutBills
Converts to this type from the input type.
Source§impl PartialEq for MaxOutBills
impl PartialEq for MaxOutBills
Source§impl Serialize for MaxOutBills
impl Serialize for MaxOutBills
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<&XfsMember> for MaxOutBills
impl TryFrom<&XfsMember> for MaxOutBills
Source§impl TryFrom<&XfsValue> for MaxOutBills
impl TryFrom<&XfsValue> for MaxOutBills
Source§impl TryFrom<XfsMember> for MaxOutBills
impl TryFrom<XfsMember> for MaxOutBills
Source§impl TryFrom<XfsValue> for MaxOutBills
impl TryFrom<XfsValue> for MaxOutBills
impl Copy for MaxOutBills
impl Eq for MaxOutBills
impl StructuralPartialEq for MaxOutBills
Auto Trait Implementations§
impl Freeze for MaxOutBills
impl RefUnwindSafe for MaxOutBills
impl Send for MaxOutBills
impl Sync for MaxOutBills
impl Unpin for MaxOutBills
impl UnwindSafe for MaxOutBills
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