mlir::dialects::memref

Struct Cast

Source
pub struct Cast(/* private fields */);

Implementations§

Source§

impl Cast

Source

pub fn new_ranked<T: NamedMemorySpace>( t: &MemRef, source: &Value, loc: &Location, ) -> Self

TODO: The following properties (1 and 2) are not checked by this constructor [1]: a. Both are ranked memref types with the same element type, address space, and rank and: 1. Both have the same layout or both have compatible strided layouts. 2. The individual sizes (resp. offset and strides in the case of strided memrefs) may convert constant dimensions to dynamic dimensions and vice-versa. [1]: https://mlir.llvm.org/docs/Dialects/MemRef/#memrefcast-memrefcastop

Source

pub fn new_unranked<T: NamedMemorySpace>( t: &UnrankedMemRef, source: &Value, loc: &Location, ) -> Self

Source

pub fn from(op: MlirOperation) -> Self

Source

pub fn get(&self) -> &MlirOperation

Source

pub fn get_mut(&mut self) -> &mut MlirOperation

Source

pub fn get_result(&self) -> Value

Trait Implementations§

Source§

impl Clone for Cast

Source§

fn clone(&self) -> Cast

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 IOperation for Cast

Source§

fn get(&self) -> &MlirOperation

Source§

fn get_dialect(&self) -> Dialect

Source§

fn get_effects(&self) -> MemoryEffectList

Source§

fn get_interfaces(&self) -> &'static [Interface]

Source§

fn get_mut(&mut self) -> &mut MlirOperation

Source§

fn get_name(&self) -> &'static str

Source§

fn get_op(&self) -> OpRef

Source§

fn get_traits(&self) -> &'static [Trait]

Source§

fn as_operation(&self) -> Operation

Auto Trait Implementations§

§

impl Freeze for Cast

§

impl RefUnwindSafe for Cast

§

impl !Send for Cast

§

impl !Sync for Cast

§

impl Unpin for Cast

§

impl UnwindSafe for Cast

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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,

Source§

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>,

Source§

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>,

Source§

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.