pub enum FunctionTypeHint {
None,
FieldSetter,
Specialized(&'static HashMap<&'static str, &'static str>),
}
Variants
None
FieldSetter
Specialized(&'static HashMap<&'static str, &'static str>)
Trait Implementations
sourceimpl Clone for FunctionTypeHint
impl Clone for FunctionTypeHint
sourcefn clone(&self) -> FunctionTypeHint
fn clone(&self) -> FunctionTypeHint
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FunctionTypeHint
impl Debug for FunctionTypeHint
sourceimpl PartialEq<FunctionTypeHint> for FunctionTypeHint
impl PartialEq<FunctionTypeHint> for FunctionTypeHint
sourcefn eq(&self, other: &FunctionTypeHint) -> bool
fn eq(&self, other: &FunctionTypeHint) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FunctionTypeHint) -> bool
fn ne(&self, other: &FunctionTypeHint) -> bool
This method tests for !=
.
impl Copy for FunctionTypeHint
impl StructuralPartialEq for FunctionTypeHint
Auto Trait Implementations
impl RefUnwindSafe for FunctionTypeHint
impl Send for FunctionTypeHint
impl Sync for FunctionTypeHint
impl Unpin for FunctionTypeHint
impl UnwindSafe for FunctionTypeHint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more