Struct stageleft::RuntimeData

source ·
pub struct RuntimeData<T> { /* private fields */ }
Expand description

Represents a piece of data that will be passed into the generated code

Implementations§

source§

impl<T> RuntimeData<T>

source

pub fn new(ident: &'static str) -> RuntimeData<T>

Trait Implementations§

source§

impl<T: Copy> Clone for RuntimeData<T>

source§

fn clone(&self) -> Self

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<T, Ctx> FreeVariableWithContext<Ctx> for RuntimeData<T>

source§

type O = T

source§

fn to_tokens(self, _ctx: &Ctx) -> (Option<TokenStream>, Option<TokenStream>)

source§

fn uninitialized(&self, _ctx: &Ctx) -> Self::O

source§

impl<'a, T: 'a, Ctx> QuotedWithContext<'a, T, Ctx> for RuntimeData<T>

source§

fn splice_untyped_ctx(self, ctx: &Ctx) -> Expr
where Self: Sized,

source§

fn splice_typed_ctx(self, ctx: &Ctx) -> Expr
where Self: Sized,

source§

fn splice_fn1_ctx<I, O>(self, ctx: &Ctx) -> Expr
where Self: Sized, T: Fn(I) -> O,

source§

fn splice_fn1_borrow_ctx<I, O>(self, ctx: &Ctx) -> Expr
where Self: Sized, T: Fn(&I) -> O,

source§

fn splice_fn2_borrow_mut_ctx<I1, I2, O>(self, ctx: &Ctx) -> Expr
where Self: Sized, T: Fn(&mut I1, I2) -> O,

source§

impl<T: Copy> Copy for RuntimeData<T>

Auto Trait Implementations§

§

impl<T> Freeze for RuntimeData<T>

§

impl<T> RefUnwindSafe for RuntimeData<T>
where T: RefUnwindSafe,

§

impl<T> Send for RuntimeData<T>
where T: Send,

§

impl<T> Sync for RuntimeData<T>
where T: Sync,

§

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

§

impl<T> UnwindSafe for RuntimeData<T>
where T: UnwindSafe,

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 T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<O, T> FreeVariable<O> for T
where T: FreeVariableWithContext<(), O = O>,

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.
source§

impl<'a, T, F> Quoted<'a, T> for F
where F: QuotedWithContext<'a, T, ()>,