yew-nav-link 0.12.5

Navigation link component for Yew with automatic active state detection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: RAprogramm <andrey.rozanov.vl@gmail.com>
// SPDX-License-Identifier: MIT

//! URL parsing utilities.
//!
//! Provides helpers for parsing URLs and query parameters.

mod codec;
mod parts;
mod query;

pub use codec::{percent_decode, urlencoding_decode, urlencoding_encode};
pub use parts::UrlParts;
pub use query::QueryParams;