pub struct IGiftBolt11Invoice {
pub id: String,
pub request: String,
pub state: String,
pub is_hodl_invoice: Option<bool>,
pub payment_hash: Option<String>,
pub amount_sat: Option<u64>,
pub amount_msat: Option<String>,
pub internal_node_pubkey: Option<String>,
pub updated_at: Option<String>,
pub created_at: Option<String>,
pub expires_at: Option<String>,
}Fields§
§id: String§request: String§state: String§is_hodl_invoice: Option<bool>§payment_hash: Option<String>§amount_sat: Option<u64>§amount_msat: Option<String>§internal_node_pubkey: Option<String>§updated_at: Option<String>§created_at: Option<String>§expires_at: Option<String>Trait Implementations§
Source§impl Clone for IGiftBolt11Invoice
impl Clone for IGiftBolt11Invoice
Source§fn clone(&self) -> IGiftBolt11Invoice
fn clone(&self) -> IGiftBolt11Invoice
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 IGiftBolt11Invoice
impl Debug for IGiftBolt11Invoice
Source§impl<'de> Deserialize<'de> for IGiftBolt11Invoice
impl<'de> Deserialize<'de> for IGiftBolt11Invoice
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 IGiftBolt11Invoice
impl RefUnwindSafe for IGiftBolt11Invoice
impl Send for IGiftBolt11Invoice
impl Sync for IGiftBolt11Invoice
impl Unpin for IGiftBolt11Invoice
impl UnwindSafe for IGiftBolt11Invoice
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