Home
last modified time | relevance | path

Searched refs:IntoOwned (Results 1 – 15 of 15) sorted by relevance

/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/http/src/
H A Dext.rs76 pub trait IntoOwned { interface
84 impl<T: IntoOwned> IntoOwned for Option<T> {
93 impl<B: 'static + ToOwned + ?Sized> IntoOwned for Cow<'_, B> {
97 fn into_owned(self) -> <Self as IntoOwned>::Owned { in into_owned()
H A Droute.rs6 use crate::ext::IntoOwned;
36 impl<P: UriPart + 'static> IntoOwned for RouteSegment<'_, P> {
42 string: IntoOwned::into_owned(self.string), in into_owned()
44 name: IntoOwned::into_owned(self.name), in into_owned()
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/http/src/uri/
H A Dauthority.rs4 use crate::ext::IntoOwned;
36 impl<T: IntoOwned> IntoOwned for Host<T> {
40 self.map_inner(IntoOwned::into_owned) in into_owned()
44 impl IntoOwned for Authority<'_> {
H A Dabsolute.rs4 use crate::ext::IntoOwned;
32 impl IntoOwned for Absolute<'_> {
H A Duri.rs7 use crate::ext::IntoOwned;
243 impl IntoOwned for Uri<'_> {
H A Dorigin.rs4 use crate::ext::IntoOwned;
100 impl IntoOwned for Origin<'_> {
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/http/src/parse/uri/
H A Derror.rs7 use crate::ext::IntoOwned;
82 impl IntoOwned for Error<'_> {
86 let expected = self.expected.map(|i| i, IntoOwned::into_owned, |i| i); in into_owned()
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/http/src/parse/
H A Dindexed.rs9 use crate::ext::IntoOwned;
75 impl<T: 'static + ?Sized + ToOwned> IntoOwned for Indexed<'_, T> {
81 Indexed::Concrete(cow) => Indexed::Concrete(IntoOwned::into_owned(cow)) in into_owned()
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/contrib/lib/src/
H A Dserve.rs20 use rocket::http::{Method, uri::Segments, ext::IntoOwned};
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/lib/src/
H A Derror.rs224 use crate::http::ext::IntoOwned;
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/lib/src/router/
H A Droute.rs11 use crate::http::ext::IntoOwned;
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/lib/src/local/
H A Drequest.rs8 use crate::http::{Status, Method, Header, Cookie, uri::Origin, ext::IntoOwned};
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/codegen/src/bang/
H A Duri_parsing.rs12 use crate::http::{uri::Origin, ext::IntoOwned};
H A Duri.rs7 use crate::http::{uri::{Origin, Path, Query}, ext::IntoOwned};
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/codegen/src/
H A Dhttp_codegen.rs4 use crate::http::{self, ext::IntoOwned};