pub enum ManifestPathPart {
Literal(String),
Field(ManifestFieldPath),
}Expand description
One parsed part of a manifest entry path template.
Variants§
Literal(String)
Literal path text copied without interpretation.
Field(ManifestFieldPath)
A manifest field whose scalar values are interpolated.
Trait Implementations§
Source§impl Clone for ManifestPathPart
impl Clone for ManifestPathPart
Source§impl Debug for ManifestPathPart
impl Debug for ManifestPathPart
impl Eq for ManifestPathPart
Source§impl PartialEq for ManifestPathPart
impl PartialEq for ManifestPathPart
impl StructuralPartialEq for ManifestPathPart
Auto Trait Implementations§
impl Freeze for ManifestPathPart
impl RefUnwindSafe for ManifestPathPart
impl Send for ManifestPathPart
impl Sync for ManifestPathPart
impl Unpin for ManifestPathPart
impl UnsafeUnpin for ManifestPathPart
impl UnwindSafe for ManifestPathPart
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> 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.