• asm-lsp 0.3.1/src/lsp.rs
    20
        #[allow(clippy::filter_next)]
    21
        let mut end = line_
  • hyraigne 0.1.4/src/sites/mangakakalot/chapter.rs
    71
    /// Extract the chapter URL.
    72
    #[allow(clippy::filter_next)]
    73
    fn url_from_element(element: &kuchiki::ElementData) -> Result<Url> {
  • hyraigne 0.1.4/src/sites/mangakakalot/series.rs
    24
    /// Extract series title from the content of `<div class="post-title">`.
    25
    #[allow(clippy::filter_next)]
    26
    fn title_from_html(html: &kuchiki::NodeRef) -> Result<String> {
    40
    /// Extract series URL from `<meta property="og:url" content="URL" />`
    41
    #[allow(clippy::filter_next)]
    42
    fn url_from_html(html: &kuchiki::NodeRef) -> Result<Url> {
  • hyraigne 0.1.4/src/sites/webtoons/chapter.rs
    51
    /// Extract the chapter URL.
    52
    #[allow(clippy::filter_next)]
    53
    fn url_from_html(html: &kuchiki::NodeRef) -> Result<Url> {
  • hyraigne 0.1.4/src/sites/webtoons/series.rs
    27
    /// Extract series title from `<meta property="og:title" content="TITLE" />`
    28
    #[allow(clippy::filter_next)]
    29
    fn title_from_html(html: &kuchiki::NodeRef) -> Result<String> {
    41
    /// Extract series URL from `<meta property="og:url" content="URL" />`
    42
    #[allow(clippy::filter_next)]
    43
    fn url_from_html(html: &kuchiki::NodeRef) -> Result<Url> {
  • hyraigne 0.1.4/src/sites/webtoonscan/chapter.rs
    48
    /// Extract the chapter URL.
    49
    #[allow(clippy::filter_next)]
    50
    fn url_from_element(element: &kuchiki::ElementData) -> Result<Url> {
  • hyraigne 0.1.4/src/sites/webtoonscan/series.rs
    24
    /// Extract series title from the content of `<div class="post-title">`.
    25
    #[allow(clippy::filter_next)]
    26
    fn title_from_html(html: &kuchiki::NodeRef) -> Result<String> {
    40
    /// Extract series URL from `<meta property="og:url" content="URL" />`
    41
    #[allow(clippy::filter_next)]
    42
    fn url_from_html(html: &kuchiki::NodeRef) -> Result<Url> {