pub struct ManifestFieldPath { /* private fields */ }Expand description
A validated field path into a manifest document.
Field paths use dotted object keys and an exact [*] segment for array
traversal. The parsed segments are retained so evaluators do not repeatedly
interpret user-authored path strings.
Implementations§
Trait Implementations§
Source§impl Clone for ManifestFieldPath
impl Clone for ManifestFieldPath
Source§impl Debug for ManifestFieldPath
impl Debug for ManifestFieldPath
Source§impl<'de> Deserialize<'de> for ManifestFieldPath
impl<'de> Deserialize<'de> for ManifestFieldPath
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ManifestFieldPath
impl Display for ManifestFieldPath
impl Eq for ManifestFieldPath
Source§impl FromStr for ManifestFieldPath
impl FromStr for ManifestFieldPath
Source§impl Hash for ManifestFieldPath
impl Hash for ManifestFieldPath
Source§impl Ord for ManifestFieldPath
impl Ord for ManifestFieldPath
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for ManifestFieldPath
impl PartialEq for ManifestFieldPath
Source§impl PartialOrd for ManifestFieldPath
impl PartialOrd for ManifestFieldPath
Source§impl Serialize for ManifestFieldPath
impl Serialize for ManifestFieldPath
impl StructuralPartialEq for ManifestFieldPath
Auto Trait Implementations§
impl Freeze for ManifestFieldPath
impl RefUnwindSafe for ManifestFieldPath
impl Send for ManifestFieldPath
impl Sync for ManifestFieldPath
impl Unpin for ManifestFieldPath
impl UnsafeUnpin for ManifestFieldPath
impl UnwindSafe for ManifestFieldPath
Blanket Implementations§
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more