Struct FragmentRef
pub struct FragmentRef<'a> { /* private fields */ }net only.Expand description
Borrowed view of a URI fragment component (no leading #).
Implementations§
§impl<'a> FragmentRef<'a>
impl<'a> FragmentRef<'a>
pub fn from_raw_str(fragment: &'a str) -> FragmentRef<'a>
pub fn from_raw_str(fragment: &'a str) -> FragmentRef<'a>
Borrow a fragment string as a FragmentRef — no allocation.
The input is treated as component text. When rendered through
FragmentRef::as_encoded_str, bytes outside the fragment grammar are
percent-encoded while valid existing pct triplets are preserved.
pub fn as_encoded_str(self) -> Cow<'a, str>
pub fn as_encoded_str(self) -> Cow<'a, str>
Percent-encoded fragment string (no leading #).
pub fn is_empty(self) -> bool
pub fn is_empty(self) -> bool
true when the fragment contains no bytes. An empty fragment is
still present (# on the wire) — the present-vs-absent
distinction is owned by super::Uri::fragment.
pub fn as_decoded_str(&self) -> Cow<'a, str>
pub fn as_decoded_str(&self) -> Cow<'a, str>
Percent-decoded fragment. Cow::Borrowed when no %XX escapes
are present; Cow::Owned otherwise. UTF-8 errors fall back to
U+FFFD.
pub fn into_owned(self) -> Fragment
pub fn into_owned(self) -> Fragment
Returns an owned copy. Named into_owned (matching
crate::std::borrow::Cow::into_owned) so it doesn’t shadow the std ToOwned
trait method.
Trait Implementations§
§impl<'a> Clone for FragmentRef<'a>
impl<'a> Clone for FragmentRef<'a>
§fn clone(&self) -> FragmentRef<'a>
fn clone(&self) -> FragmentRef<'a>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl<'a> Copy for FragmentRef<'a>
§impl<'a> Debug for FragmentRef<'a>
impl<'a> Debug for FragmentRef<'a>
§impl Display for FragmentRef<'_>
impl Display for FragmentRef<'_>
impl Eq for FragmentRef<'_>
§impl Hash for FragmentRef<'_>
impl Hash for FragmentRef<'_>
§impl Ord for FragmentRef<'_>
impl Ord for FragmentRef<'_>
§fn cmp(&self, other: &FragmentRef<'_>) -> Ordering
fn cmp(&self, other: &FragmentRef<'_>) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
§impl PartialEq for FragmentRef<'_>
impl PartialEq for FragmentRef<'_>
§impl PartialEq<&str> for FragmentRef<'_>
impl PartialEq<&str> for FragmentRef<'_>
§impl<'a> PartialEq<FragmentRef<'a>> for str
impl<'a> PartialEq<FragmentRef<'a>> for str
§impl<'a> PartialEq<FragmentRef<'a>> for &str
impl<'a> PartialEq<FragmentRef<'a>> for &str
§impl PartialEq<str> for FragmentRef<'_>
impl PartialEq<str> for FragmentRef<'_>
§impl PartialOrd for FragmentRef<'_>
impl PartialOrd for FragmentRef<'_>
Auto Trait Implementations§
impl<'a> Freeze for FragmentRef<'a>
impl<'a> RefUnwindSafe for FragmentRef<'a>
impl<'a> Send for FragmentRef<'a>
impl<'a> Sync for FragmentRef<'a>
impl<'a> Unpin for FragmentRef<'a>
impl<'a> UnsafeUnpin for FragmentRef<'a>
impl<'a> UnwindSafe for FragmentRef<'a>
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a rama_grpc::Request§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Policy that returns Action::Follow only if self and other return
Action::Follow. Read more§impl<T, U> RamaTryFrom<T> for Uwhere
U: TryFrom<T>,
impl<T, U> RamaTryFrom<T> for Uwhere
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
fn rama_try_from(value: T) -> Result<U, <U as RamaTryFrom<T>>::Error>
§impl<T, U, CrateMarker> RamaTryInto<U, CrateMarker> for Twhere
U: RamaTryFrom<T, CrateMarker>,
impl<T, U, CrateMarker> RamaTryInto<U, CrateMarker> for Twhere
U: RamaTryFrom<T, CrateMarker>,
type Error = <U as RamaTryFrom<T, CrateMarker>>::Error
fn rama_try_into(self) -> Result<U, <U as RamaTryFrom<T, CrateMarker>>::Error>
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.