pub struct DataHop<'a> {
pub edge: &'a DataEdge,
pub value: Option<&'a LocalValue>,
}Expand description
One end of a data edge together with the local reached through it. 数据边的一端,以及经该边到达的局部值。
Fields§
§edge: &'a DataEdgeThe edge being traversed. 正在遍历的边。
value: Option<&'a LocalValue>The local at this end, None when it was not recorded.
该端的局部值;未记录时为 None。
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DataHop<'a>
impl<'a> RefUnwindSafe for DataHop<'a>
impl<'a> Send for DataHop<'a>
impl<'a> Sync for DataHop<'a>
impl<'a> Unpin for DataHop<'a>
impl<'a> UnsafeUnpin for DataHop<'a>
impl<'a> UnwindSafe for DataHop<'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