[][src]Struct octocrab::markdown::MarkdownHandler

pub struct MarkdownHandler<'octo> { /* fields omitted */ }

Handler for GitHub's markdown API.

Created with Octocrab::markdown.

Implementations

impl<'octo> MarkdownHandler<'octo>[src]

pub fn render<'r, 'text>(
    &'r self,
    text: &'text impl AsRef<str> + ?Sized
) -> RenderMarkdownBuilder<'octo, 'r, 'text>
[src]

Render an arbitrary Markdown document.

use octocrab::params;

let markdown = octocrab::instance()
    .markdown()
    .render("Comment referencing issue #404")
    .mode(params::markdown::Mode::Gfm)
    .context("owner/repo")
    .send()
    .await?;

pub async fn render_raw<'_>(&'_ self, text: impl Into<String>) -> Result<String>[src]

Render a Markdown document in raw mode.

use octocrab::params;

let markdown = octocrab::instance()
    .markdown()
    .render_raw("~~_**Octocrab**_~~")
    .await?;

Auto Trait Implementations

impl<'octo> !RefUnwindSafe for MarkdownHandler<'octo>

impl<'octo> Send for MarkdownHandler<'octo>

impl<'octo> Sync for MarkdownHandler<'octo>

impl<'octo> Unpin for MarkdownHandler<'octo>

impl<'octo> !UnwindSafe for MarkdownHandler<'octo>

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, U> Into<U> for T where
    U: From<T>, 
[src]

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.