[][src]Struct lnrpc::ListInvoiceRequest

pub struct ListInvoiceRequest {
    pub pending_only: bool,
    pub index_offset: u64,
    pub num_max_invoices: u64,
    pub reversed: bool,
}

Fields

pending_only: bool

If set, only invoices that are not settled and not canceled will be returned in the response.

index_offset: u64

The index of an invoice that will be used as either the start or end of a query to determine which invoices should be returned in the response.

num_max_invoices: u64reversed: bool

If set, the invoices returned will result from seeking backwards from the specified index offset. This can be used to paginate backwards.

Trait Implementations

impl Clone for ListInvoiceRequest[src]

impl Debug for ListInvoiceRequest[src]

impl Default for ListInvoiceRequest[src]

impl Message for ListInvoiceRequest[src]

impl PartialEq<ListInvoiceRequest> for ListInvoiceRequest[src]

impl StructuralPartialEq for ListInvoiceRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]