pub struct FieldAccess {
pub is_root: bool,
pub path: Vec<String>,
}Expand description
Field access: .Values.image.tag
Fields§
§is_root: boolWhether this is a root access ($.Values vs .Values)
path: Vec<String>The path components: [“Values”, “image”, “tag”]
Implementations§
Trait Implementations§
Source§impl Clone for FieldAccess
impl Clone for FieldAccess
Source§fn clone(&self) -> FieldAccess
fn clone(&self) -> FieldAccess
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FieldAccess
impl Debug for FieldAccess
Source§impl PartialEq for FieldAccess
impl PartialEq for FieldAccess
impl StructuralPartialEq for FieldAccess
Auto Trait Implementations§
impl Freeze for FieldAccess
impl RefUnwindSafe for FieldAccess
impl Send for FieldAccess
impl Sync for FieldAccess
impl Unpin for FieldAccess
impl UnwindSafe for FieldAccess
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