pub struct PaymentsData {
pub id: String,
pub fee: Option<String>,
pub unit: String,
pub amount: String,
pub invoice: Option<String>,
pub preimage: Option<String>,
pub internal_id: Option<String>,
pub processed_at: Option<DateTime<Utc>>,
pub confirmed_at: Option<DateTime<Utc>>,
pub description: String,
pub status: Option<String>,
}
Fields§
§id: String
§fee: Option<String>
§unit: String
§amount: String
§invoice: Option<String>
§preimage: Option<String>
§internal_id: Option<String>
§processed_at: Option<DateTime<Utc>>
§confirmed_at: Option<DateTime<Utc>>
§description: String
§status: Option<String>
Trait Implementations§
Source§impl Debug for PaymentsData
impl Debug for PaymentsData
Source§impl<'de> Deserialize<'de> for PaymentsData
impl<'de> Deserialize<'de> for PaymentsData
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 PaymentsData
impl RefUnwindSafe for PaymentsData
impl Send for PaymentsData
impl Sync for PaymentsData
impl Unpin for PaymentsData
impl UnwindSafe for PaymentsData
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