[][src]Trait firefly_iii::apis::ChartsApi

pub trait ChartsApi {
    fn get_chart_ab_overview<'life0, 'async_trait>(
        &'life0 self,
        id: i32,
        start: String,
        end: String
    ) -> Pin<Box<dyn Future<Output = Result<Vec<ChartDataSet>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn get_chart_account_expense<'life0, 'async_trait>(
        &'life0 self,
        start: String,
        end: String
    ) -> Pin<Box<dyn Future<Output = Result<Vec<ChartDataSet>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn get_chart_account_overview<'life0, 'async_trait>(
        &'life0 self,
        start: String,
        end: String
    ) -> Pin<Box<dyn Future<Output = Result<Vec<ChartDataSet>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn get_chart_account_revenue<'life0, 'async_trait>(
        &'life0 self,
        start: String,
        end: String
    ) -> Pin<Box<dyn Future<Output = Result<Vec<ChartDataSet>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn get_chart_category_overview<'life0, 'async_trait>(
        &'life0 self,
        start: String,
        end: String
    ) -> Pin<Box<dyn Future<Output = Result<Vec<ChartDataSet>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

fn get_chart_ab_overview<'life0, 'async_trait>(
    &'life0 self,
    id: i32,
    start: String,
    end: String
) -> Pin<Box<dyn Future<Output = Result<Vec<ChartDataSet>, Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

fn get_chart_account_expense<'life0, 'async_trait>(
    &'life0 self,
    start: String,
    end: String
) -> Pin<Box<dyn Future<Output = Result<Vec<ChartDataSet>, Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

fn get_chart_account_overview<'life0, 'async_trait>(
    &'life0 self,
    start: String,
    end: String
) -> Pin<Box<dyn Future<Output = Result<Vec<ChartDataSet>, Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

fn get_chart_account_revenue<'life0, 'async_trait>(
    &'life0 self,
    start: String,
    end: String
) -> Pin<Box<dyn Future<Output = Result<Vec<ChartDataSet>, Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

fn get_chart_category_overview<'life0, 'async_trait>(
    &'life0 self,
    start: String,
    end: String
) -> Pin<Box<dyn Future<Output = Result<Vec<ChartDataSet>, Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl ChartsApi for ChartsApiClient[src]

Loading content...