Documentation
use super::*;


pub struct Sidebar {

}

impl Renderable for Sidebar {
    fn render(&self) -> Html {
        html! {
        <nav class="sidebar">
    <div class="sidebar-menu">{"☰"}</div>
    <a href="//">
        <div class="logo-container rust-logo">
            <img src="./regex__bytes__Captures - Rust_files/rust-logo-20210107-1.51.0-nightly-c8915eebe.png" alt="logo"/>
        </div>
    </a>
    <p class="location">{"Struct Captures"}</p>
    <div class="sidebar-elems">
        <div class="block items"><a class="sidebar-title" href="//">{"Methods"}</a>
            <div class="sidebar-links">
                <a href="//">{"expand"}</a>
                <a href="//">{"get"}</a>
                <a href="//">{"iter"}</a>
            </div>
            <a class="sidebar-title" href="//">{"Trait Implementations"}</a>
            <div class="sidebar-links">
                <a href="//">{"Debug"}</a>
                <a href="//">{"Index<&'str>"}</a>
                <a href="//">{"Index&lt;usize&gt;"}</a>
            </div>
            <a class="sidebar-title" href="//">{"Auto Trait Implementations"}</a>
            <div class="sidebar-links">
                <a href="//">{"RefUnwindSafe"}</a>
                <a href="//">{"Send"}</a>
                <a href="//">{"Sync"}</a>
                <a href="//">{"Unpin"}</a>
                <a href="//">{"UnwindSafe"}</a>
            </div>
            <a class="sidebar-title" href="//">{"Blanket Implementations"}</a>
            <div class="sidebar-links">
                <a href="//">{"Any"}</a>
                <a href="//">{"Borrow<T>"}</a>
            </div>
        </div>
        <p class="location"><a href="//">{"regex"}</a>{"::"}<a href="//">{"bytes"}</a></p>
        <div class="block struct">
            <h3>{"Structs"}</h3>
            <ul>
                <li><a href="//" title="By-reference adaptor for a `Replacer`" class="struct">{"ReplacerRef"}</a></li>
                <li><a href="//" title="A set of matches returned by a regex set." class="struct">{"SetMatches"}</a>
                </li>
                <li><a href="//" title="An owned iterator over the set of matches from a regex set."
                        class="struct">{"SetMatchesIntoIter"}</a></li>
                <li><a href="//" title="A borrowed iterator over the set of matches from a regex set."
                        class="struct">{"SetMatchesIter"}</a></li>
                <li><a href="//" title="Yields all substrings delimited by a regular expression match."
                        class="struct">{"Split"}</a>
                </li>
                <li><a href="//" title="Yields at most `N` substrings delimited by a regular expression match."
                        class="struct">{"SplitN"}</a></li>
                <li><a href="//"
                        title="An iterator that yields all capturing matches in the order in which they appear in the regex."
                        class="struct">{"SubCaptureMatches"}</a></li>
            </ul>
        </div>
        <div class="block trait">
            <h3>{"Traits"}</h3>
            <ul>
                <li><a href="//" title="Replacer describes types that can be used to replace matches in a byte string."
                        class="trait">{"Replacer"}</a></li>
            </ul>
        </div>
    </div>
</nav>
        }
    }
}