pub struct DialectHandle { /* private fields */ }
Expand description

A dialect handle.

Implementations§

source§

impl DialectHandle

source

pub fn async() -> Self

Creates a async dialect handle.

source

pub fn cf() -> Self

Creates a cf dialect handle.

source

pub fn func() -> Self

Creates a func dialect handle.

source

pub fn gpu() -> Self

Creates a gpu dialect handle.

source

pub fn linalg() -> Self

Creates a linalg dialect handle.

source

pub fn llvm() -> Self

Creates a llvm dialect handle.

source

pub fn pdl() -> Self

Creates a pdl dialect handle.

source

pub fn quant() -> Self

Creates a quant dialect handle.

source

pub fn scf() -> Self

Creates a scf dialect handle.

source

pub fn shape() -> Self

Creates a shape dialect handle.

source

pub fn sparse_tensor() -> Self

Creates a sparse_tensor dialect handle.

source

pub fn tensor() -> Self

Creates a tensor dialect handle.

source

pub fn namespace(&self) -> StringRef<'_>

Returns a namespace.

source

pub fn insert_dialect(&self, registry: &DialectRegistry)

Inserts a dialect into a dialect registry.

source

pub fn load_dialect<'c>(&self, context: &'c Context) -> Dialect<'c>

Loads a dialect into a context.

source

pub fn register_dialect(&self, context: &Context)

Registers a dialect into a context.

source

pub const unsafe fn from_raw(handle: MlirDialectHandle) -> Self

Creates a dialect handle from a raw object.

§Safety

A raw object must be valid.

source

pub const fn to_raw(self) -> MlirDialectHandle

Converts a dialect handle into a raw object.

Trait Implementations§

source§

impl Clone for DialectHandle

source§

fn clone(&self) -> DialectHandle

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DialectHandle

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for DialectHandle

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.