[][src]Struct peepmatic_runtime::paths::Path

pub struct Path<'a>(pub &'a [u8]);

A path through the data-flow graph from the root instruction.

Implementations

impl<'_> Path<'_>[src]

pub fn new(path: &impl AsRef<[u8]>) -> Path[src]

Construct a new path through the data-flow graph from the root instruction.

Trait Implementations

impl<'a> Clone for Path<'a>[src]

impl<'a> Copy for Path<'a>[src]

impl<'a> Debug for Path<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for Path<'a>[src]

impl<'a> Eq for Path<'a>[src]

impl<'a> PartialEq<Path<'a>> for Path<'a>[src]

impl<'a> Serialize for Path<'a>[src]

impl<'a> StructuralEq for Path<'a>[src]

impl<'a> StructuralPartialEq for Path<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Path<'a>

impl<'a> Send for Path<'a>

impl<'a> Sync for Path<'a>

impl<'a> Unpin for Path<'a>

impl<'a> UnwindSafe for Path<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.