Skip to main content

PrimExpr

Struct PrimExpr 

Source
pub struct PrimExpr<T: PrimType>(/* private fields */);
Expand description

This represents a value that can be passed to functions, put in fields, etc.

Implementations§

Source§

impl<T: PrimType> PrimExpr<T>

Source

pub fn raw(&self) -> String

Trait Implementations§

Source§

impl<T: PrimType> Display for PrimExpr<T>

Source§

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

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

impl<T: PrimType> Expr<T> for PrimExpr<T>

Source§

impl Into<PrimExpr<String>> for PrimExpr<bool>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for &PrimExpr<bool>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for PrimExpr<i64>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for &PrimExpr<i64>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for PrimExpr<f64>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for &PrimExpr<f64>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for Variable<bool>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for &Variable<bool>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for Variable<i64>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for &Variable<i64>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for Variable<f64>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl Into<PrimExpr<String>> for &Variable<f64>

Source§

fn into(self) -> PrimExpr<String>

Converts this type into the (usually inferred) input type.
Source§

impl<T: PrimType> Into<PrimExpr<T>> for Func

Source§

fn into(self) -> PrimExpr<T>

Converts this type into the (usually inferred) input type.
Source§

impl<T: PrimType> Into<PrimField<T>> for PrimExpr<T>

Source§

fn into(self) -> PrimField<T>

Converts this type into the (usually inferred) input type.
Source§

impl<T: PrimType> Into<PrimField<T>> for &PrimExpr<T>

Source§

fn into(self) -> PrimField<T>

Converts this type into the (usually inferred) input type.
Source§

impl<T: PrimType> Into<String> for PrimExpr<T>

Source§

fn into(self) -> String

Converts this type into the (usually inferred) input type.
Source§

impl<T: PrimType> Into<String> for &PrimExpr<T>

Source§

fn into(self) -> String

Converts this type into the (usually inferred) input type.
Source§

impl<T: PrimType> ListToRecMappable for PrimExpr<T>

Source§

impl<T: PrimType> RecToListMappable for PrimExpr<T>

Source§

type O = MapRecRefToList<PrimField<T>>

Source§

fn do_map(self, base: String) -> Self::O

Source§

impl<T: PrimType> Ref for PrimExpr<T>

Source§

fn new(shared: StackShared, base: String) -> PrimExpr<T>

Source§

impl<T: PrimType> ToFuncArg<T> for PrimExpr<T>

Source§

fn to_func_arg(self, _shared: &StackShared) -> PrimExpr<T>

Source§

impl<T: PrimType> ToListMappable for PrimExpr<T>

Source§

type O = MapListRef<PrimField<T>>

Source§

fn do_map(self, base: String) -> Self::O

Source§

impl<T: PrimType> ToObjMappable for PrimExpr<T>

Source§

type O = MapRecRef<PrimField<T>>

Source§

fn do_map_rec(self, base: String, k: PrimExpr<String>) -> Self::O

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for PrimExpr<T>

§

impl<T> !Send for PrimExpr<T>

§

impl<T> !Sync for PrimExpr<T>

§

impl<T> !UnwindSafe for PrimExpr<T>

§

impl<T> Freeze for PrimExpr<T>

§

impl<T> Unpin for PrimExpr<T>
where T: Unpin,

§

impl<T> UnsafeUnpin for PrimExpr<T>

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.