Struct inkwell::debug_info::DIExpression
source · pub struct DIExpression<'ctx> { /* private fields */ }
Expand description
https://llvm.org/docs/LangRef.html#diexpression
Implementations§
source§impl<'ctx> DIExpression<'ctx>
impl<'ctx> DIExpression<'ctx>
sourcepub fn as_mut_ptr(&self) -> LLVMMetadataRef
pub fn as_mut_ptr(&self) -> LLVMMetadataRef
Acquires the underlying raw pointer belonging to this DIExpression
type.
Trait Implementations§
source§impl<'ctx> Clone for DIExpression<'ctx>
impl<'ctx> Clone for DIExpression<'ctx>
source§fn clone(&self) -> DIExpression<'ctx>
fn clone(&self) -> DIExpression<'ctx>
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<'ctx> Debug for DIExpression<'ctx>
impl<'ctx> Debug for DIExpression<'ctx>
source§impl<'ctx> PartialEq for DIExpression<'ctx>
impl<'ctx> PartialEq for DIExpression<'ctx>
source§fn eq(&self, other: &DIExpression<'ctx>) -> bool
fn eq(&self, other: &DIExpression<'ctx>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'ctx> Copy for DIExpression<'ctx>
impl<'ctx> Eq for DIExpression<'ctx>
impl<'ctx> StructuralPartialEq for DIExpression<'ctx>
Auto Trait Implementations§
impl<'ctx> Freeze for DIExpression<'ctx>
impl<'ctx> RefUnwindSafe for DIExpression<'ctx>
impl<'ctx> !Send for DIExpression<'ctx>
impl<'ctx> !Sync for DIExpression<'ctx>
impl<'ctx> Unpin for DIExpression<'ctx>
impl<'ctx> UnwindSafe for DIExpression<'ctx>
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