Struct vonuvoli_scheme::prelude::StdBox1.0.0[][src]

#[lang = "owned_box"]
pub struct StdBox<T>(_)
where
    T: ?Sized
;

A pointer type for heap allocation.

See the module-level documentation for more.

Methods

impl<T> Box<T>
[src]

Important traits for Box<R>

Allocates memory on the heap and then places x into it.

This doesn't actually allocate if T is zero-sized.

Examples

let five = Box::new(5);

impl<T> Box<T> where
    T: ?Sized
[src]

Important traits for Box<R>

Constructs a box from a raw pointer.

After calling this function, the raw pointer is owned by the resulting Box. Specifically, the Box destructor will call the destructor of T and free the allocated memory. Since the way Box allocates and releases memory is unspecified, the only valid pointer to pass to this function is the one taken from another Box via the Box::into_raw function.

This function is unsafe because improper use may lead to memory problems. For example, a double-free may occur if the function is called twice on the same raw pointer.

Examples

let x = Box::new(5);
let ptr = Box::into_raw(x);
let x = unsafe { Box::from_raw(ptr) };

Consumes the Box, returning the wrapped raw pointer.

After calling this function, the caller is responsible for the memory previously managed by the Box. In particular, the caller should properly destroy T and release the memory. The proper way to do so is to convert the raw pointer back into a Box with the Box::from_raw function.

Note: this is an associated function, which means that you have to call it as Box::into_raw(b) instead of b.into_raw(). This is so that there is no conflict with a method on the inner type.

Examples

let x = Box::new(5);
let ptr = Box::into_raw(x);

🔬 This is a nightly-only experimental API. (box_into_raw_non_null)

Consumes the Box, returning the wrapped pointer as NonNull<T>.

After calling this function, the caller is responsible for the memory previously managed by the Box. In particular, the caller should properly destroy T and release the memory. The proper way to do so is to convert the NonNull<T> pointer into a raw pointer and back into a Box with the Box::from_raw function.

Note: this is an associated function, which means that you have to call it as Box::into_raw_non_null(b) instead of b.into_raw_non_null(). This is so that there is no conflict with a method on the inner type.

Examples

#![feature(box_into_raw_non_null)]

fn main() {
    let x = Box::new(5);
    let ptr = Box::into_raw_non_null(x);
}

Important traits for &'a mut R

Consumes and leaks the Box, returning a mutable reference, &'a mut T. Here, the lifetime 'a may be chosen to be 'static.

This function is mainly useful for data that lives for the remainder of the program's life. Dropping the returned reference will cause a memory leak. If this is not acceptable, the reference should first be wrapped with the Box::from_raw function producing a Box. This Box can then be dropped which will properly destroy T and release the allocated memory.

Note: this is an associated function, which means that you have to call it as Box::leak(b) instead of b.leak(). This is so that there is no conflict with a method on the inner type.

Examples

Simple usage:

fn main() {
    let x = Box::new(41);
    let static_ref: &'static mut usize = Box::leak(x);
    *static_ref += 1;
    assert_eq!(*static_ref, 42);
}

Unsized data:

fn main() {
    let x = vec![1, 2, 3].into_boxed_slice();
    let static_ref = Box::leak(x);
    static_ref[0] = 4;
    assert_eq!(*static_ref, [4, 2, 3]);
}

impl Box<Any + 'static>
[src]

Attempt to downcast the box to a concrete type.

Examples

use std::any::Any;

fn print_if_string(value: Box<Any>) {
    if let Ok(string) = value.downcast::<String>() {
        println!("String ({}): {}", string.len(), string);
    }
}

fn main() {
    let my_string = "Hello World".to_string();
    print_if_string(Box::new(my_string));
    print_if_string(Box::new(0i8));
}

impl Box<Any + 'static + Send>
[src]

Attempt to downcast the box to a concrete type.

Examples

use std::any::Any;

fn print_if_string(value: Box<Any + Send>) {
    if let Ok(string) = value.downcast::<String>() {
        println!("String ({}): {}", string.len(), string);
    }
}

fn main() {
    let my_string = "Hello World".to_string();
    print_if_string(Box::new(my_string));
    print_if_string(Box::new(0i8));
}

Trait Implementations

impl<T> Error for Box<T> where
    T: Error
1.8.0
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl Default for Box<CStr>
1.17.0
[src]

Important traits for Box<R>

Returns the "default value" for a type. Read more

impl Default for Box<OsStr>
1.17.0
[src]

Important traits for Box<R>

Returns the "default value" for a type. Read more

impl<R> Read for Box<R> where
    R: Read + ?Sized
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, appending them to buf. Read more

Read the exact number of bytes required to fill buf. Read more

Important traits for &'a mut R

Creates a "by reference" adaptor for this instance of Read. Read more

Important traits for Bytes<R>

Transforms this Read instance to an [Iterator] over its bytes. Read more

Important traits for Chars<R>

Deprecated since 1.27.0

: Use str::from_utf8 instead: https://doc.rust-lang.org/nightly/std/str/struct.Utf8Error.html#examples

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an [Iterator] over [char]s. Read more

Important traits for Chain<T, U>

Creates an adaptor which will chain this stream with another. Read more

Important traits for Take<T>

Creates an adaptor which will read at most limit bytes from it. Read more

impl<B> BufRead for Box<B> where
    B: BufRead + ?Sized
[src]

Fills the internal buffer of this object, returning the buffer contents. Read more

Tells this buffer that amt bytes have been consumed from the buffer, so they should no longer be returned in calls to read. Read more

Read all bytes into buf until the delimiter byte or EOF is reached. Read more

Read all bytes until a newline (the 0xA byte) is reached, and append them to the provided buffer. Read more

Important traits for Split<B>

Returns an iterator over the contents of this reader split on the byte byte. Read more

Important traits for Lines<B>

Returns an iterator over the lines of this reader. Read more

impl<S> Seek for Box<S> where
    S: Seek + ?Sized
[src]

Seek to an offset, in bytes, in a stream. Read more

impl<W> Write for Box<W> where
    W: Write + ?Sized
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Important traits for &'a mut R

Creates a "by reference" adaptor for this instance of Write. Read more

impl From<CString> for Box<CStr>
1.20.0
[src]

Important traits for Box<R>

Performs the conversion.

impl From<OsString> for Box<OsStr>
1.20.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<'a> From<&'a str> for Box<Error + 'static>
1.6.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<'a> From<&'a Path> for Box<Path>
1.17.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<'a, 'b> From<&'b str> for Box<Error + 'a + Send + Sync>
[src]

Important traits for Box<R>

Performs the conversion.

impl<'a, 'b> From<Cow<'b, str>> for Box<Error + 'a + Send + Sync>
1.22.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<'a, E> From<E> for Box<Error + 'a> where
    E: 'a + Error
[src]

Important traits for Box<R>

Performs the conversion.

impl<'a> From<Cow<'a, str>> for Box<Error + 'static>
1.22.0
[src]

Important traits for Box<R>

Performs the conversion.

impl From<String> for Box<Error + 'static>
1.6.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<'a> From<&'a OsStr> for Box<OsStr>
1.17.0
[src]

Important traits for Box<R>

Performs the conversion.

impl From<PathBuf> for Box<Path>
1.20.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<'a, E> From<E> for Box<Error + 'a + Send + Sync> where
    E: 'a + Error + Send + Sync
[src]

Important traits for Box<R>

Performs the conversion.

impl From<String> for Box<Error + 'static + Send + Sync>
[src]

Important traits for Box<R>

Performs the conversion.

impl From<Box<Path>> for PathBuf
1.18.0
[src]

Performs the conversion.

impl From<Box<CStr>> for CString
1.18.0
[src]

Performs the conversion.

impl<'a> From<&'a CStr> for Box<CStr>
1.17.0
[src]

Important traits for Box<R>

Performs the conversion.

impl From<Box<OsStr>> for OsString
1.18.0
[src]

Performs the conversion.

impl<I> FusedIterator for Box<I> where
    I: FusedIterator + ?Sized
1.26.0
[src]

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

Important traits for &'a mut R

Mutably dereferences the value.

impl<T> Hash for Box<T> where
    T: Hash + ?Sized
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

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

Important traits for &'a mut R

Immutably borrows from an owned value. Read more

impl<T> PartialOrd<Box<T>> for Box<T> where
    T: PartialOrd<T> + ?Sized
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

impl<T> Generator for Box<T> where
    T: Generator + ?Sized
[src]

🔬 This is a nightly-only experimental API. (generator_trait)

The type of value this generator yields. Read more

🔬 This is a nightly-only experimental API. (generator_trait)

The type of value this generator returns. Read more

🔬 This is a nightly-only experimental API. (generator_trait)

Resumes the execution of this generator. Read more

impl<T> Hasher for Box<T> where
    T: Hasher + ?Sized
1.22.0
[src]

Returns the hash value for the values written so far. Read more

Writes some data into this Hasher. Read more

Writes a single u8 into this hasher.

Writes a single u16 into this hasher.

Writes a single u32 into this hasher.

Writes a single u64 into this hasher.

Writes a single u128 into this hasher.

Writes a single usize into this hasher.

Writes a single i8 into this hasher.

Writes a single i16 into this hasher.

Writes a single i32 into this hasher.

Writes a single i64 into this hasher.

Writes a single i128 into this hasher.

Writes a single isize into this hasher.

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

Important traits for &'a mut R

Mutably borrows from an owned value. Read more

impl<I> ExactSizeIterator for Box<I> where
    I: ExactSizeIterator + ?Sized
[src]

Returns the exact number of times the iterator will iterate. Read more

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

Returns whether the iterator is empty. Read more

impl<T> AsMut<T> for Box<T> where
    T: ?Sized
1.5.0
[src]

Important traits for &'a mut R

Performs the conversion.

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

The resulting type after dereferencing.

Important traits for &'a mut R

Dereferences the value.

impl<T> Default for Box<[T]>
[src]

Important traits for Box<R>

Returns the "default value" for a type. Read more

impl<T> Default for Box<T> where
    T: Default
[src]

Important traits for Box<R>

Creates a Box<T>, with the Default value for T.

impl Default for Box<str>
1.17.0
[src]

Important traits for Box<R>

Returns the "default value" for a type. Read more

impl<T> Display for Box<T> where
    T: Display + ?Sized
[src]

Formats the value using the given formatter. Read more

impl<'a, A, R> FnOnce<A> for Box<FnBox<A, Output = R> + 'a>
[src]

The returned type after the call operator is used.

🔬 This is a nightly-only experimental API. (fn_traits)

Performs the call operation.

impl<'a, A, R> FnOnce<A> for Box<FnBox<A, Output = R> + 'a + Send>
[src]

The returned type after the call operator is used.

🔬 This is a nightly-only experimental API. (fn_traits)

Performs the call operation.

impl<I> Iterator for Box<I> where
    I: Iterator + ?Sized
[src]

The type of the elements being iterated over.

Advances the iterator and returns the next value. Read more

Returns the bounds on the remaining length of the iterator. Read more

Returns the nth element of the iterator. Read more

Consumes the iterator, counting the number of iterations and returning it. Read more

Consumes the iterator, returning the last element. Read more

Important traits for StepBy<I>

🔬 This is a nightly-only experimental API. (iterator_step_by)

unstable replacement of Range::step_by

Creates an iterator starting at the same point, but stepping by the given amount at each iteration. Read more

Important traits for Chain<A, B>

Takes two iterators and creates a new iterator over both in sequence. Read more

Important traits for Zip<A, B>

'Zips up' two iterators into a single iterator of pairs. Read more

Important traits for Map<I, F>

Takes a closure and creates an iterator which calls that closure on each element. Read more

Calls a closure on each element of an iterator. Read more

Important traits for Filter<I, P>

Creates an iterator which uses a closure to determine if an element should be yielded. Read more

Important traits for FilterMap<I, F>

Creates an iterator that both filters and maps. Read more

Important traits for Enumerate<I>

Creates an iterator which gives the current iteration count as well as the next value. Read more

Important traits for Peekable<I>

Creates an iterator which can use peek to look at the next element of the iterator without consuming it. Read more

Important traits for SkipWhile<I, P>

Creates an iterator that [skip]s elements based on a predicate. Read more

Important traits for TakeWhile<I, P>

Creates an iterator that yields elements based on a predicate. Read more

Important traits for Skip<I>

Creates an iterator that skips the first n elements. Read more

Important traits for Take<I>

Creates an iterator that yields its first n elements. Read more

Important traits for Scan<I, St, F>

An iterator adaptor similar to [fold] that holds internal state and produces a new iterator. Read more

Important traits for FlatMap<I, U, F>

Creates an iterator that works like map, but flattens nested structure. Read more

Important traits for Flatten<I>

🔬 This is a nightly-only experimental API. (iterator_flatten)

Creates an iterator that flattens nested structure. Read more

Important traits for Fuse<I>

Creates an iterator which ends after the first [None]. Read more

Important traits for Inspect<I, F>

Do something with each element of an iterator, passing the value on. Read more

Important traits for &'a mut R

Borrows an iterator, rather than consuming it. Read more

Transforms an iterator into a collection. Read more

Consumes an iterator, creating two collections from it. Read more

An iterator method that applies a function as long as it returns successfully, producing a single, final value. Read more

An iterator method that applies a fallible function to each item in the iterator, stopping at the first error and returning that error. Read more

An iterator method that applies a function, producing a single, final value. Read more

Tests if every element of the iterator matches a predicate. Read more

Tests if any element of the iterator matches a predicate. Read more

Searches for an element of an iterator that satisfies a predicate. Read more

🔬 This is a nightly-only experimental API. (iterator_find_map)

unstable new API

Applies function to the elements of iterator and returns the first non-none result. Read more

Searches for an element in an iterator, returning its index. Read more

Searches for an element in an iterator from the right, returning its index. Read more

Returns the maximum element of an iterator. Read more

Returns the minimum element of an iterator. Read more

Returns the element that gives the maximum value from the specified function. Read more

Returns the element that gives the maximum value with respect to the specified comparison function. Read more

Returns the element that gives the minimum value from the specified function. Read more

Returns the element that gives the minimum value with respect to the specified comparison function. Read more

Important traits for Rev<I>

Reverses an iterator's direction. Read more

Converts an iterator of pairs into a pair of containers. Read more

Important traits for Cloned<I>

Creates an iterator which [clone]s all of its elements. Read more

Important traits for Cycle<I>

Repeats an iterator endlessly. Read more

Sums the elements of an iterator. Read more

Iterates over the entire iterator, multiplying all the elements Read more

Lexicographically compares the elements of this Iterator with those of another. Read more

Lexicographically compares the elements of this Iterator with those of another. Read more

Determines if the elements of this Iterator are equal to those of another. Read more

Determines if the elements of this Iterator are unequal to those of another. Read more

Determines if the elements of this Iterator are lexicographically less than those of another. Read more

Determines if the elements of this Iterator are lexicographically less or equal to those of another. Read more

Determines if the elements of this Iterator are lexicographically greater than those of another. Read more

Determines if the elements of this Iterator are lexicographically greater than or equal to those of another. Read more

impl<T> Ord for Box<T> where
    T: Ord + ?Sized
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<T> Debug for Box<T> where
    T: Debug + ?Sized
[src]

Formats the value using the given formatter. Read more

impl<I> DoubleEndedIterator for Box<I> where
    I: DoubleEndedIterator + ?Sized
[src]

Removes and returns an element from the end of the iterator. Read more

This is the reverse version of [try_fold()]: it takes elements starting from the back of the iterator. Read more

An iterator method that reduces the iterator's elements to a single, final value, starting from the back. Read more

Searches for an element of an iterator from the back that satisfies a predicate. Read more

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

Important traits for Box<R>

Returns a new box with a clone() of this box's contents.

Examples

let x = Box::new(5);
let y = x.clone();

Copies source's contents into self without creating a new allocation.

Examples

let x = Box::new(5);
let mut y = Box::new(10);

y.clone_from(&x);

assert_eq!(*y, 5);

impl<T> Clone for Box<[T]> where
    T: Clone
1.3.0
[src]

Important traits for Box<R>

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Clone for Box<str>
1.3.0
[src]

Important traits for Box<R>

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

impl<T> PartialEq<Box<T>> for Box<T> where
    T: PartialEq<T> + ?Sized
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T, U> CoerceUnsized<Box<U>> for Box<T> where
    T: Unsize<U> + ?Sized,
    U: ?Sized
[src]

impl<T> Eq for Box<T> where
    T: Eq + ?Sized
[src]

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

Executes the destructor for this type. Read more

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

Important traits for Box<R>

Performs the conversion.

impl<T> From<Box<[T]>> for Vec<T>
1.18.0
[src]

Important traits for Vec<u8>

Performs the conversion.

impl<T> From<PinBox<T>> for Box<T> where
    T: Unpin + ?Sized
[src]

Important traits for Box<R>

Performs the conversion.

impl From<Box<str>> for String
1.18.0
[src]

Performs the conversion.

impl<T> From<Box<T>> for Rc<T> where
    T: ?Sized
1.21.0
[src]

Performs the conversion.

impl<'a> From<&'a str> for Box<str>
1.17.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<T> From<Vec<T>> for Box<[T]>
1.20.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<'a, T> From<&'a [T]> for Box<[T]> where
    T: Copy
1.17.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<T> From<Box<T>> for PinBox<T> where
    T: ?Sized
[src]

Performs the conversion.

impl From<Box<str>> for Box<[u8]>
1.19.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<T> From<Box<T>> for Arc<T> where
    T: ?Sized
1.21.0
[src]

Performs the conversion.

impl From<String> for Box<str>
1.20.0
[src]

Important traits for Box<R>

Performs the conversion.

impl<T> AsRef<T> for Box<T> where
    T: ?Sized
1.5.0
[src]

Important traits for &'a mut R

Performs the conversion.

impl<R> Rng for Box<R> where
    R: Rng + ?Sized
[src]

Return the next random u32. Read more

Return the next random u64. Read more

Return the next random f32 selected from the half-open interval [0, 1). Read more

Return the next random f64 selected from the half-open interval [0, 1). Read more

Fill dest with random data. Read more

Return a random value of a Rand type. Read more

Important traits for Generator<'a, T, R>

Return an iterator that will yield an infinite number of randomly generated items. Read more

Generate a random value in the range [low, high). Read more

Return a bool with a 1 in n chance of true Read more

Important traits for AsciiGenerator<'a, R>

Return an iterator of random characters from the set A-Z,a-z,0-9. Read more

Return a random element from values. Read more

Return a mutable pointer to a random element from values. Read more

Shuffle a mutable slice in place. Read more

impl<'a, S, T> TwoStepShared<T, S> for Box<DefaultFeatures<'a> + 'a> where
    S: 'a + ?Sized,
    T: 'a + SafeBorrow<S>,
    TwoStepArc<T, S>: DefaultFeatures<'a>, 

Important traits for Box<R>

Returns a new, empty instance of Self.

Returns the internal Option<T> backing this value. Read more

impl<'a, S, T> TwoStepShared<T, S> for Box<NonSyncFeatures<'a> + 'a> where
    S: 'a + ?Sized,
    T: 'a + SafeBorrow<S>,
    TwoStepRc<T, S>: NonSyncFeatures<'a>, 

Important traits for Box<R>

Returns a new, empty instance of Self.

Returns the internal Option<T> backing this value. Read more

impl<'a, T> SharedFrom<T> for Box<DefaultFeatures<'a> + 'a> where
    T: DefaultFeatures<'a>, 

Important traits for Box<R>

Converts the given T to Self.

impl<'a, T> SharedFrom<T> for Box<NonSyncFeatures<'a> + 'a> where
    T: NonSyncFeatures<'a>, 

Important traits for Box<R>

Converts the given T to Self.

impl<T> ConstDeref for Box<T> where
    T: ConstDeref + ?Sized

The type this value dereferences to.

Returns the (constant) value that this value dereferences to.

impl<'a> Clone for Box<NonSyncFeatures<'a> + 'a>

Important traits for Box<R>

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Clone for Box<DefaultFeatures<'a> + 'a>

Important traits for Box<R>

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T> Serialize for Box<T> where
    T: Serialize + ?Sized
[src]

Serialize this value into the given Serde serializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more

impl<'de> Deserialize<'de> for Box<CStr>
[src]

Deserialize this value from the given Serde deserializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more

impl<'de> Deserialize<'de> for Box<str>
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Error for Box<ErrorKind>
[src]

Important traits for Box<R>

Used when a [Serialize] implementation encounters any error while serializing a type. Read more

impl Error for Box<ErrorKind>
[src]

Important traits for Box<R>

Raised when there is general error when deserializing a type. Read more

Raised when a Deserialize receives a type different from what it was expecting. Read more

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more

Raised when a Deserialize enum type received a variant with an unrecognized name. Read more

Raised when a Deserialize struct type received a field with an unrecognized name. Read more

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input. Read more

Raised when a Deserialize struct type received more than one of the same field. Read more

impl From<Error> for Box<ErrorKind>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Value> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Value
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ExpressionForContexts> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ExpressionForContexts
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ExpressionForProcedureGenericCall> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ExpressionForProcedureGenericCall
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ExpressionForProcedurePrimitiveCall> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ExpressionForProcedurePrimitiveCall
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ExpressionForProcedureExtendedCall> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ExpressionForProcedureExtendedCall
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ExpressionForProcedureLambdaCall> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ExpressionForProcedureLambdaCall
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ExpressionForProcedureNativeCall> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ExpressionForProcedureNativeCall
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ValueSingleton> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ValueSingleton> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for ValueSingleton
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ValueSingleton
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Boolean> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Boolean> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Boolean
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Boolean
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<NumberInteger> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<NumberInteger> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for NumberInteger
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for NumberInteger
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<NumberReal> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<NumberReal> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for NumberReal
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for NumberReal
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Character> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Character> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Character
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Character
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Symbol> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Symbol> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Symbol
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Symbol
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Keyword> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Keyword> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Keyword
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Keyword
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Unique> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Unique> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Unique
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Unique
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringImmutable> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringImmutable> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for StringImmutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for StringImmutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringMutable> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringMutable> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for StringMutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for StringMutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesImmutable> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesImmutable> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for BytesImmutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for BytesImmutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesMutable> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesMutable> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for BytesMutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for BytesMutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringRegex> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringRegex> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for StringRegex
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for StringRegex
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesRegex> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesRegex> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for BytesRegex
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for BytesRegex
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<PairImmutable> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PairImmutable> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for PairImmutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for PairImmutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<PairMutable> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PairMutable> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for PairMutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for PairMutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArrayImmutable> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayImmutable> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for ArrayImmutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ArrayImmutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArrayMutable> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayMutable> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for ArrayMutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ArrayMutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Values> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Values> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Values
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Values
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordKind> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordKind> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for RecordKind
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for RecordKind
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordImmutable> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordImmutable> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for RecordImmutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for RecordImmutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordMutable> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordMutable> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for RecordMutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for RecordMutable
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Error> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Error> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Error
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Error
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedurePrimitive> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for ProcedurePrimitive
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ProcedurePrimitive
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureExtended> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureExtended> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for ProcedureExtended
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ProcedureExtended
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for ProcedureNative
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ProcedureNative
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureLambda> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureLambda> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for ProcedureLambda
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for ProcedureLambda
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<SyntaxPrimitive> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxPrimitive> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for SyntaxPrimitive
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for SyntaxPrimitive
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<SyntaxExtended> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxExtended> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for SyntaxExtended
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for SyntaxExtended
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<SyntaxNative> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxNative> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for SyntaxNative
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for SyntaxNative
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<SyntaxLambda> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxLambda> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for SyntaxLambda
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for SyntaxLambda
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Path> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Path> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Path
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Path
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Port> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Port> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Port
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Port
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Process> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Process> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Process
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Process
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Context> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Context> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Context
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Context
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Binding> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Binding> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Binding
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Binding
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Parameters> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Parameters> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Parameters
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Parameters
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Parameter> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Parameter> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Parameter
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Parameter
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Promise> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Promise> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Promise
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Promise
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<Opaque> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<Opaque> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<Value>> for Opaque
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<StdBox<Expression>> for Opaque
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<()> for StdBox<ValueSingleton>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<()> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<()> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<bool> for StdBox<Boolean>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<bool> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<bool> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdBox<Boolean>> for bool
[src]

Performs the conversion.

impl StdFrom<char> for StdBox<Character>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<char> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<char> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdBox<Character>> for char
[src]

Performs the conversion.

impl StdFrom<i64> for StdBox<NumberInteger>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i64> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i64> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdBox<NumberInteger>> for i64
[src]

Performs the conversion.

impl StdFrom<i8> for StdBox<NumberInteger>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i8> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i8> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u8> for StdBox<NumberInteger>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u8> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u8> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i16> for StdBox<NumberInteger>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i16> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i16> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u16> for StdBox<NumberInteger>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u16> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u16> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i32> for StdBox<NumberInteger>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i32> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i32> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u32> for StdBox<NumberInteger>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u32> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u32> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<isize> for StdBox<NumberInteger>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<isize> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<isize> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<u64> for StdBox<NumberInteger>
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<usize> for StdBox<NumberInteger>
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<u64> for StdBox<Value>
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdTryFrom<usize> for StdBox<Value>
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<char> for StdBox<NumberInteger>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<f64> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<f64> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<f64> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdBox<NumberReal>> for f64
[src]

Performs the conversion.

impl StdFrom<NumberInteger> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<f32> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i8> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u8> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i16> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u16> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i32> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u32> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<i64> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<u64> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<isize> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<usize> for StdBox<NumberReal>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdString> for StdBox<StringImmutable>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdString> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdString> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<&'static str> for StdBox<StringImmutable>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<&'static str> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<&'static str> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdString> for StdBox<StringMutable>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<&'static str> for StdBox<StringMutable>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdString> for StdBox<Symbol>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<&'static str> for StdBox<Symbol>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdString> for StdBox<Keyword>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<&'static str> for StdBox<Keyword>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PathBuf> for StdBox<Path>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PathBuf> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PathBuf> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<&'static Path> for StdBox<Path>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<&'static Path> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<&'static Path> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StdString> for StdBox<Path>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<&'static str> for StdBox<Path>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<UniqueData> for StdBox<Unique>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<UniqueData> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<UniqueData> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<(Value, Value)> for StdBox<PairImmutable>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<(Value, Value)> for StdBox<PairMutable>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureExtendedInternals> for StdBox<ProcedureExtended>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureExtendedInternals> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureExtendedInternals> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxExtendedInternals> for StdBox<SyntaxExtended>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxExtendedInternals> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxExtendedInternals> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeInternals> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeInternals> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeInternals> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxNativeInternals> for StdBox<SyntaxNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxNativeInternals> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxNativeInternals> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcessStatus> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive>> for ProcedurePrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedurePrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive>> for ProcedurePrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedurePrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive>> for ProcedurePrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedurePrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive>> for ProcedurePrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedurePrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive>> for ProcedurePrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedurePrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive>> for ProcedurePrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedurePrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive>> for ProcedurePrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedurePrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedurePrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive>> for ProcedurePrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<SyntaxPrimitiveV> for StdBox<SyntaxPrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<SyntaxPrimitive>> for SyntaxPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative0> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative0> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn0> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative1> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative1> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn1> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative2> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative2> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn2> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative3> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative3> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn3> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative4> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative4> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn4> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative5> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative5> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn5> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNativeN> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeN> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFnN> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFnN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFnN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNativeN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative0E> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative0E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative0E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative0E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn0E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn0E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn0E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative0E
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative1E> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative1E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative1E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative1E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn1E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn1E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn1E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative1E
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative2E> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative2E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative2E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative2E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn2E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn2E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn2E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative2E
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative3E> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative3E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative3E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative3E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn3E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn3E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn3E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative3E
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative4E> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative4E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative4E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative4E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn4E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn4E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn4E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative4E
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNative5E> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative5E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative5E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNative5E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn5E> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn5E> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFn5E> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNative5E
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNativeNE> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeNE> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeNE> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeNE> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFnNE> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFnNE> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFnNE> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNativeNE
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ProcedureNativeV> for StdBox<ProcedureNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeV> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFnV> for StdBox<ProcedureNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFnV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ProcedureNativeFnV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedureNativeInternals>> for ProcedureNativeV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<SyntaxNativeG> for StdBox<SyntaxNativeInternals>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxNativeG> for StdBox<SyntaxNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxNativeG> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxNativeG> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxNativeFnG> for StdBox<SyntaxNative>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxNativeFnG> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<SyntaxNativeFnG> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for TypePrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<TypePrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for TypePrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<TypePrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for TypePrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<TypePrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for TypePrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<TypePrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for TypePrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<TypePrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for TypePrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<TypePrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for TypePrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<TypePrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<TypePrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for TypePrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BooleanPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for BooleanPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BooleanPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for BooleanPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BooleanPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for BooleanPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BooleanPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for BooleanPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BooleanPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for BooleanPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BooleanPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for BooleanPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BooleanPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for BooleanPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BooleanPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BooleanPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for BooleanPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArithmeticPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for ArithmeticPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArithmeticPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for ArithmeticPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArithmeticPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for ArithmeticPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArithmeticPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for ArithmeticPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArithmeticPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for ArithmeticPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArithmeticPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for ArithmeticPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArithmeticPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for ArithmeticPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArithmeticPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArithmeticPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for ArithmeticPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BitwisePrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for BitwisePrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BitwisePrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for BitwisePrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BitwisePrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for BitwisePrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BitwisePrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for BitwisePrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BitwisePrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for BitwisePrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BitwisePrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for BitwisePrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BitwisePrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for BitwisePrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BitwisePrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BitwisePrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for BitwisePrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ComparisonPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for ComparisonPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ComparisonPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for ComparisonPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ComparisonPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for ComparisonPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ComparisonPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for ComparisonPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ComparisonPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for ComparisonPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ComparisonPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for ComparisonPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ComparisonPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for ComparisonPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ComparisonPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ComparisonPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for ComparisonPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ListPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for ListPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ListPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for ListPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ListPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for ListPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ListPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for ListPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ListPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for ListPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ListPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for ListPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ListPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for ListPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ListPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ListPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for ListPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArrayPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for ArrayPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArrayPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for ArrayPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArrayPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for ArrayPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArrayPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for ArrayPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArrayPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for ArrayPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArrayPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for ArrayPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArrayPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for ArrayPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<ArrayPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<ArrayPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for ArrayPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for BytesPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for BytesPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for BytesPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for BytesPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for BytesPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for BytesPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for BytesPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<BytesPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<BytesPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for BytesPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for StringPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for StringPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for StringPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for StringPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for StringPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for StringPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for StringPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<StringPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<StringPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for StringPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FunctionsPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for FunctionsPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FunctionsPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for FunctionsPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FunctionsPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for FunctionsPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FunctionsPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for FunctionsPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FunctionsPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for FunctionsPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FunctionsPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for FunctionsPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FunctionsPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for FunctionsPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FunctionsPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FunctionsPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for FunctionsPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for RecordPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for RecordPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for RecordPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for RecordPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for RecordPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for RecordPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for RecordPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RecordPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RecordPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for RecordPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RuntimePrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for RuntimePrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RuntimePrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for RuntimePrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RuntimePrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for RuntimePrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RuntimePrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for RuntimePrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RuntimePrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for RuntimePrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RuntimePrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for RuntimePrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RuntimePrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for RuntimePrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<RuntimePrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<RuntimePrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for RuntimePrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<PortPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for PortPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<PortPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for PortPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<PortPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for PortPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<PortPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for PortPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<PortPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for PortPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<PortPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for PortPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<PortPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for PortPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<PortPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<PortPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for PortPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FileSystemPrimitive0> for StdBox<ProcedurePrimitive0>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive0> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive0> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive0> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive0>> for FileSystemPrimitive0
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FileSystemPrimitive1> for StdBox<ProcedurePrimitive1>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive1> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive1> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive1> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive1>> for FileSystemPrimitive1
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FileSystemPrimitive2> for StdBox<ProcedurePrimitive2>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive2> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive2> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive2> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive2>> for FileSystemPrimitive2
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FileSystemPrimitive3> for StdBox<ProcedurePrimitive3>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive3> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive3> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive3> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive3>> for FileSystemPrimitive3
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FileSystemPrimitive4> for StdBox<ProcedurePrimitive4>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive4> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive4> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive4> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive4>> for FileSystemPrimitive4
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FileSystemPrimitive5> for StdBox<ProcedurePrimitive5>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive5> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive5> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitive5> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitive5>> for FileSystemPrimitive5
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FileSystemPrimitiveN> for StdBox<ProcedurePrimitiveN>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitiveN> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitiveN> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitiveN> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveN>> for FileSystemPrimitiveN
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl StdFrom<FileSystemPrimitiveV> for StdBox<ProcedurePrimitiveV>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitiveV> for StdBox<ProcedurePrimitive>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitiveV> for StdBox<Value>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdFrom<FileSystemPrimitiveV> for StdBox<Expression>
[src]

Important traits for Box<R>

Performs the conversion.

impl StdTryFrom<StdBox<ProcedurePrimitiveV>> for FileSystemPrimitiveV
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<'a> StdFrom<&'a StdBox<[u8]>> for BytesSliceRef<'a>
[src]

Performs the conversion.

impl<'a> StdFrom<&'a StdBox<str>> for BytesSliceRef<'a>
[src]

Performs the conversion.

Auto Trait Implementations

impl<T: ?Sized> Send for Box<T> where
    T: Send

impl<T: ?Sized> Sync for Box<T> where
    T: Sync