pub trait UnauthenticatedResources: BaseClient + Sized {
// Required methods
fn wallet_address(&self) -> WalletAddressResource<'_, Self>;
fn public_incoming_payments(&self) -> IncomingPaymentResource<'_, Self>;
}
Expand description
Extension trait for any client (authenticated or not)
Required Methods§
fn wallet_address(&self) -> WalletAddressResource<'_, Self>
fn public_incoming_payments(&self) -> IncomingPaymentResource<'_, Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.