pub struct LnValidateMetadata {
pub min_sendable: Option<u64>,
pub max_sendable: Option<u64>,
pub comment_allowed: Option<u64>,
pub tag: Option<String>,
pub metadata: Option<String>,
pub callback: Option<String>,
pub payer_data: Option<LnPayerData>,
pub disposable: Option<bool>,
}
Fields§
§min_sendable: Option<u64>
§max_sendable: Option<u64>
§comment_allowed: Option<u64>
§tag: Option<String>
§metadata: Option<String>
§callback: Option<String>
§payer_data: Option<LnPayerData>
§disposable: Option<bool>
Trait Implementations§
Source§impl Debug for LnValidateMetadata
impl Debug for LnValidateMetadata
Source§impl<'de> Deserialize<'de> for LnValidateMetadata
impl<'de> Deserialize<'de> for LnValidateMetadata
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 LnValidateMetadata
impl RefUnwindSafe for LnValidateMetadata
impl Send for LnValidateMetadata
impl Sync for LnValidateMetadata
impl Unpin for LnValidateMetadata
impl UnwindSafe for LnValidateMetadata
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