Enum rustc_typeck::hir::FunctionRetTy
[−]
[src]
pub enum FunctionRetTy { NoReturn(Span), DefaultReturn(Span), Return(P<Ty>), }
Unstable (
rustc_private
)Variants
NoReturn(Span)
Unstable (
rustc_private
)Functions with return type !
that always
raise an error or exit (i.e. never return to the caller)
DefaultReturn(Span)
Unstable (
rustc_private
)Return type is not specified.
Functions default to ()
and
closures default to inference. Span points to where return
type would be inserted.
Return(P<Ty>)
Unstable (
rustc_private
)Everything else
Methods
impl FunctionRetTy
Trait Implementations
Derived Implementations
impl Debug for FunctionRetTy
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Hash for FunctionRetTy
fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl Decodable for FunctionRetTy
fn decode<__D>(__arg_0: &mut __D) -> Result<FunctionRetTy, __D::Error> where __D: Decoder
impl Encodable for FunctionRetTy
impl Eq for FunctionRetTy
impl PartialEq<FunctionRetTy> for FunctionRetTy
fn eq(&self, __arg_0: &FunctionRetTy) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &FunctionRetTy) -> bool
This method tests for !=
.
impl Clone for FunctionRetTy
fn clone(&self) -> FunctionRetTy
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more