Enum inkwell::attributes::AttributeLoc
source · pub enum AttributeLoc {
Return,
Param(u32),
Function,
}
Expand description
An AttributeLoc
determines where on a function an attribute is assigned to.
Variants§
Return
Assign to the FunctionValue
’s return type.
Param(u32)
Assign to one of the FunctionValue
’s params (0-indexed).
Function
Assign to the FunctionValue
itself.
Trait Implementations§
source§impl Clone for AttributeLoc
impl Clone for AttributeLoc
source§fn clone(&self) -> AttributeLoc
fn clone(&self) -> AttributeLoc
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 AttributeLoc
impl Debug for AttributeLoc
source§impl Hash for AttributeLoc
impl Hash for AttributeLoc
source§impl PartialEq for AttributeLoc
impl PartialEq for AttributeLoc
source§fn eq(&self, other: &AttributeLoc) -> bool
fn eq(&self, other: &AttributeLoc) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for AttributeLoc
impl Eq for AttributeLoc
impl StructuralPartialEq for AttributeLoc
Auto Trait Implementations§
impl Freeze for AttributeLoc
impl RefUnwindSafe for AttributeLoc
impl Send for AttributeLoc
impl Sync for AttributeLoc
impl Unpin for AttributeLoc
impl UnwindSafe for AttributeLoc
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> 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