We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1f9deb commit 78026bdCopy full SHA for 78026bd
sdk/cosmos/azure_data_cosmos/src/utils.rs
@@ -4,15 +4,6 @@
4
use url::Url;
5
6
/// Appends new path segments to the target [`Url`].
7
-///
8
-/// # Examples
9
-/// ```rust
10
-/// use url::Url;
11
12
-/// let mut url: Url = "https://example.com/foo".parse().unwrap();
13
-/// url.append_to_path(&["bar", "baz"]);
14
-/// assert_eq!("https://example.com/foo/bar/baz", url.to_string());
15
-/// ```
16
pub trait AppendPathSegments {
17
fn append_path_segments<'a>(&mut self, segments: impl IntoIterator<Item = &'a str>);
18
}
0 commit comments