octocrab 0.49.9

A modern, extensible GitHub API client.
Documentation
//! Github RateLimit API

use crate::{models, Octocrab, Result};

/// Handler for GitHub's rate_limit API.
///
/// Created with [`Octocrab::ratelimit`].
pub struct RateLimitHandler<'octo> {
    crab: &'octo Octocrab,
}

impl<'octo> RateLimitHandler<'octo> {
    pub(crate) fn new(crab: &'octo Octocrab) -> Self {
        Self { crab }
    }

    /// Get the rate limit.
    /// ```no_run
    /// # async fn run() -> octocrab::Result<()> {
    /// let ratelimit = octocrab::instance()
    ///     .ratelimit()
    ///     .get()
    ///     .await?;
    /// # Ok(())
    /// # }
    /// ```
    pub async fn get(&self) -> Result<models::RateLimit> {
        self.crab.get("/rate_limit", None::<&()>).await
    }
}