pub enum FunctionTest {
AnyFunctionTest,
TypedFunctionTest(Box<TypedFunctionTest>),
}Variants§
AnyFunctionTest
TypedFunctionTest(Box<TypedFunctionTest>)
Trait Implementations§
Source§impl Clone for FunctionTest
impl Clone for FunctionTest
Source§fn clone(&self) -> FunctionTest
fn clone(&self) -> FunctionTest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FunctionTest
impl Debug for FunctionTest
Source§impl PartialEq for FunctionTest
impl PartialEq for FunctionTest
impl Eq for FunctionTest
impl StructuralPartialEq for FunctionTest
Auto Trait Implementations§
impl Freeze for FunctionTest
impl RefUnwindSafe for FunctionTest
impl Send for FunctionTest
impl Sync for FunctionTest
impl Unpin for FunctionTest
impl UnwindSafe for FunctionTest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more