pub trait AuthenticatedResources {
// Required methods
fn quotes(&self) -> QuoteResource<'_>;
fn incoming_payments(&self) -> IncomingPaymentResource<'_>;
fn outgoing_payments(&self) -> OutgoingPaymentResource<'_>;
fn grant(&self) -> Grant<'_>;
fn token(&self) -> Token<'_>;
}Required Methods§
fn quotes(&self) -> QuoteResource<'_>
fn incoming_payments(&self) -> IncomingPaymentResource<'_>
fn outgoing_payments(&self) -> OutgoingPaymentResource<'_>
fn grant(&self) -> Grant<'_>
fn token(&self) -> Token<'_>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".