pub struct Bill {
pub bill_id: BillID,
pub payment_id: PaymentID,
}
Expand description
Container for Both Bill and Payment IDs
You must use this type to extract all information about the bill
Fields§
§bill_id: BillID
§payment_id: PaymentID
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Bill
impl<'de> Deserialize<'de> for Bill
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
Source§impl FromStr for Bill
impl FromStr for Bill
impl Eq for Bill
impl StructuralPartialEq for Bill
Auto Trait Implementations§
impl Freeze for Bill
impl RefUnwindSafe for Bill
impl Send for Bill
impl Sync for Bill
impl Unpin for Bill
impl UnwindSafe for Bill
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