Struct tract_hir::infer::rules::expr::ConstantExp[][src]

pub struct ConstantExp<T>(_)
where
    T: Factoid + Output + Clone + Debug
;

A constant expression (e.g. 2 or DatumType::DT_INT32).

Trait Implementations

impl<T> Debug for ConstantExp<T> where
    T: Factoid + Output + Clone + Debug
[src]

impl<T> TExp<T> for ConstantExp<T> where
    T: Factoid + Output + Clone + Debug
[src]

fn get(&self, _: &Context) -> TractResult<T>[src]

Returns the current value of the expression in the given context.

fn set(&self, _: &mut Context, value: T) -> TractResult<bool>[src]

Tries to set the value of the expression in the given context.

fn get_paths(&self) -> Vec<&Path>

Notable traits for Vec<u8, A>

impl<A> Write for Vec<u8, A> where
    A: Allocator
[src]

Returns the paths that the expression depends on.

Auto Trait Implementations

impl<T> RefUnwindSafe for ConstantExp<T> where
    T: RefUnwindSafe

impl<T> Send for ConstantExp<T> where
    T: Send

impl<T> Sync for ConstantExp<T> where
    T: Sync

impl<T> Unpin for ConstantExp<T> where
    T: Unpin

impl<T> UnwindSafe for ConstantExp<T> where
    T: UnwindSafe

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

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

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

impl<T, E> IntoExp<T> for E where
    E: 'static + TExp<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.