Struct trivial_kernel::context::store::Term[][src]

pub struct Term<'a, Ty> {
    pub ty: &'a Ty,
    pub id: &'a u32,
    pub args: &'a [PackedPtr],
}

Fields

ty: &'a Tyid: &'a u32args: &'a [PackedPtr]

Trait Implementations

impl<'a, Ty: Debug> Debug for Term<'a, Ty>[src]

impl<'a, Ty> TryFrom<ElementRef<'a, Ty>> for Term<'a, Ty>[src]

type Error = Kind

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<'a, Ty> RefUnwindSafe for Term<'a, Ty> where
    Ty: RefUnwindSafe

impl<'a, Ty> Send for Term<'a, Ty> where
    Ty: Sync

impl<'a, Ty> Sync for Term<'a, Ty> where
    Ty: Sync

impl<'a, Ty> Unpin for Term<'a, Ty>

impl<'a, Ty> UnwindSafe for Term<'a, Ty> where
    Ty: RefUnwindSafe

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> From<T> for T[src]

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

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.