pub struct OptWithInfcx<'a, I: Interner, InfCtx: InferCtxtLike<I>, T> {
    pub data: T,
    pub infcx: Option<&'a InfCtx>,
    _interner: PhantomData<I>,
}

Fields§

§data: T§infcx: Option<&'a InfCtx>§_interner: PhantomData<I>

Implementations§

source§

impl<'a, I: Interner, T> OptWithInfcx<'a, I, Infallible, T>

source

pub fn new_no_ctx(data: T) -> Self

source§

impl<'a, I: Interner, InfCtx: InferCtxtLike<I>, T> OptWithInfcx<'a, I, InfCtx, T>

source

pub fn new(data: T, infcx: &'a InfCtx) -> Self

source

pub fn wrap<U>(self, u: U) -> OptWithInfcx<'a, I, InfCtx, U>

source

pub fn map<U>(self, f: impl FnOnce(T) -> U) -> OptWithInfcx<'a, I, InfCtx, U>

source

pub fn as_ref(&self) -> OptWithInfcx<'a, I, InfCtx, &T>

Trait Implementations§

source§

impl<I: Interner, InfCtx: InferCtxtLike<I>, T: Clone> Clone for OptWithInfcx<'_, I, InfCtx, 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<I: Interner, InfCtx: InferCtxtLike<I>, T: DebugWithInfcx<I>> Debug for OptWithInfcx<'_, I, InfCtx, T>

source§

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

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

impl<I: Interner, InfCtx: InferCtxtLike<I>, T: Copy> Copy for OptWithInfcx<'_, I, InfCtx, T>

Auto Trait Implementations§

§

impl<'a, I, InfCtx, T> RefUnwindSafe for OptWithInfcx<'a, I, InfCtx, T>where I: RefUnwindSafe, InfCtx: RefUnwindSafe, T: RefUnwindSafe,

§

impl<'a, I, InfCtx, T> Send for OptWithInfcx<'a, I, InfCtx, T>where I: Send, InfCtx: Sync, T: Send,

§

impl<'a, I, InfCtx, T> Sync for OptWithInfcx<'a, I, InfCtx, T>where I: Sync, InfCtx: Sync, T: Sync,

§

impl<'a, I, InfCtx, T> Unpin for OptWithInfcx<'a, I, InfCtx, T>where I: Unpin, T: Unpin,

§

impl<'a, I, InfCtx, T> UnwindSafe for OptWithInfcx<'a, I, InfCtx, T>where I: UnwindSafe, InfCtx: RefUnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T, R> CollectAndApply<T, R> for T

source§

fn collect_and_apply<I, F>(iter: I, f: F) -> Rwhere I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.