pub struct ClusterIds<'a, C> { /* private fields */ }
Trait Implementations§
Source§impl<C> Clone for ClusterIds<'_, C>
impl<C> Clone for ClusterIds<'_, C>
Source§impl<'a, C: 'a, Ctx> FreeVariableWithContext<Ctx> for ClusterIds<'a, C>
impl<'a, C: 'a, Ctx> FreeVariableWithContext<Ctx> for ClusterIds<'a, C>
Source§impl<'a, C, Ctx> QuotedWithContext<'a, &'a Vec<ClusterId<C>>, Ctx> for ClusterIds<'a, C>
impl<'a, C, Ctx> QuotedWithContext<'a, &'a Vec<ClusterId<C>>, Ctx> for ClusterIds<'a, C>
fn splice_untyped_ctx(self, ctx: &Ctx) -> Exprwhere
Self: Sized,
fn splice_typed_ctx(self, ctx: &Ctx) -> Exprwhere
Self: Sized,
fn splice_fn1_ctx<I, O>(self, ctx: &Ctx) -> Expr
fn splice_fn1_borrow_ctx<I, O>(self, ctx: &Ctx) -> Expr
fn splice_fn2_borrow_mut_ctx<I1, I2, O>(self, ctx: &Ctx) -> Expr
fn splice_untyped(self) -> Expr
fn splice_typed(self) -> Expr
fn splice_fn1<I, O>(self) -> Expr
fn splice_fn1_borrow<I, O>(self) -> Expr
fn splice_fn2_borrow_mut<I1, I2, O>(self) -> Expr
impl<C> Copy for ClusterIds<'_, C>
Auto Trait Implementations§
impl<'a, C> Freeze for ClusterIds<'a, C>
impl<'a, C> RefUnwindSafe for ClusterIds<'a, C>where
C: RefUnwindSafe,
impl<'a, C> Send for ClusterIds<'a, C>where
C: Send,
impl<'a, C> Sync for ClusterIds<'a, C>where
C: Sync,
impl<'a, C> Unpin for ClusterIds<'a, C>where
C: Unpin,
impl<'a, C> UnwindSafe for ClusterIds<'a, C>where
C: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<O, T> FreeVariable<O> for Twhere
T: FreeVariableWithContext<(), O = O>,
impl<O, T> FreeVariable<O> for Twhere
T: FreeVariableWithContext<(), O = O>,
fn to_tokens(self) -> (Option<TokenStream>, Option<TokenStream>)where
Self: Sized,
fn uninitialized(&self) -> O
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more