pub struct Signature {
pub params: Vec<ExprVarMemberPath>,
pub extra_rets: Vec<ExprVarMemberPath>,
pub return_type: TypeId,
pub implicits: Vec<TypeId>,
pub panicable: bool,
pub location: LocationId,
}
Expand description
Lowered signature of a function.
Fields§
§params: Vec<ExprVarMemberPath>
Input params.
extra_rets: Vec<ExprVarMemberPath>
Extra returns - e.g. ref params
return_type: TypeId
Return type.
implicits: Vec<TypeId>
Explicit implicit requirements.
panicable: bool
Panicable.
location: LocationId
Location.
Implementations§
Source§impl Signature
impl Signature
pub fn from_semantic(db: &dyn LoweringGroup, value: Signature) -> Self
Trait Implementations§
Source§impl<'a, T: ?Sized + Upcast<dyn LoweringGroup + 'a>> DebugWithDb<T> for Signature
impl<'a, T: ?Sized + Upcast<dyn LoweringGroup + 'a>> DebugWithDb<T> for Signature
Source§impl<T: SemanticRewriter<Vec<ExprVarMemberPath>, Error> + SemanticRewriter<TypeId, Error> + SemanticRewriter<Vec<TypeId>, Error>, Error> SemanticObject<T, Error> for Signature
impl<T: SemanticRewriter<Vec<ExprVarMemberPath>, Error> + SemanticRewriter<TypeId, Error> + SemanticRewriter<Vec<TypeId>, Error>, Error> SemanticObject<T, Error> for Signature
fn default_rewrite(&mut self, rewriter: &mut T) -> Result<RewriteResult, Error>
Source§impl<'a> SemanticRewriter<Signature, DiagnosticAdded> for SubstitutionRewriter<'a>
impl<'a> SemanticRewriter<Signature, DiagnosticAdded> for SubstitutionRewriter<'a>
fn internal_rewrite( &mut self, value: &mut Signature, ) -> Result<RewriteResult, DiagnosticAdded>
fn rewrite(&mut self, value: T) -> Result<T, Error>
impl Eq for Signature
impl StructuralPartialEq for Signature
Auto Trait Implementations§
impl Freeze for Signature
impl RefUnwindSafe for Signature
impl Send for Signature
impl Sync for Signature
impl Unpin for Signature
impl UnwindSafe for Signature
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more