pub(crate) struct PathNode<'a> {
path: &'a PartialPath<'a>,
index: usize,
pub(crate) cert: &'a Cert<'a>,
}
Fields§
§path: &'a PartialPath<'a>
The path we’re iterating.
index: usize
The index of the current node in the path (input for path.get()
).
cert: &'a Cert<'a>
The Cert
at index
.
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PathNode<'a>
impl<'a> RefUnwindSafe for PathNode<'a>
impl<'a> Send for PathNode<'a>
impl<'a> Sync for PathNode<'a>
impl<'a> Unpin for PathNode<'a>
impl<'a> UnwindSafe for PathNode<'a>
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