pub struct InlinedTemplateFinder {
    pub file_contents: String,
    pub templates: Vec<InlinedTemplate>,
}

Fields§

§file_contents: String§templates: Vec<InlinedTemplate>

Implementations§

source§

impl InlinedTemplateFinder

source

pub fn new(file_contents: String) -> Self

Trait Implementations§

source§

impl Debug for InlinedTemplateFinder

source§

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

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

impl<'ast> Visit<'ast> for InlinedTemplateFinder

source§

fn visit_item_struct(&mut self, i: &'ast ItemStruct)

source§

fn visit_abi(&mut self, i: &'ast Abi)

source§

fn visit_angle_bracketed_generic_arguments( &mut self, i: &'ast AngleBracketedGenericArguments )

source§

fn visit_arm(&mut self, i: &'ast Arm)

source§

fn visit_attr_style(&mut self, i: &'ast AttrStyle)

source§

fn visit_attribute(&mut self, i: &'ast Attribute)

source§

fn visit_bare_fn_arg(&mut self, i: &'ast BareFnArg)

source§

fn visit_bin_op(&mut self, i: &'ast BinOp)

source§

fn visit_binding(&mut self, i: &'ast Binding)

source§

fn visit_block(&mut self, i: &'ast Block)

source§

fn visit_bound_lifetimes(&mut self, i: &'ast BoundLifetimes)

source§

fn visit_const_param(&mut self, i: &'ast ConstParam)

source§

fn visit_constraint(&mut self, i: &'ast Constraint)

source§

fn visit_data(&mut self, i: &'ast Data)

source§

fn visit_data_enum(&mut self, i: &'ast DataEnum)

source§

fn visit_data_struct(&mut self, i: &'ast DataStruct)

source§

fn visit_data_union(&mut self, i: &'ast DataUnion)

source§

fn visit_derive_input(&mut self, i: &'ast DeriveInput)

source§

fn visit_expr(&mut self, i: &'ast Expr)

source§

fn visit_expr_array(&mut self, i: &'ast ExprArray)

source§

fn visit_expr_assign(&mut self, i: &'ast ExprAssign)

source§

fn visit_expr_assign_op(&mut self, i: &'ast ExprAssignOp)

source§

fn visit_expr_async(&mut self, i: &'ast ExprAsync)

source§

fn visit_expr_await(&mut self, i: &'ast ExprAwait)

source§

fn visit_expr_binary(&mut self, i: &'ast ExprBinary)

source§

fn visit_expr_block(&mut self, i: &'ast ExprBlock)

source§

fn visit_expr_box(&mut self, i: &'ast ExprBox)

source§

fn visit_expr_break(&mut self, i: &'ast ExprBreak)

source§

fn visit_expr_call(&mut self, i: &'ast ExprCall)

source§

fn visit_expr_cast(&mut self, i: &'ast ExprCast)

source§

fn visit_expr_closure(&mut self, i: &'ast ExprClosure)

source§

fn visit_expr_continue(&mut self, i: &'ast ExprContinue)

source§

fn visit_expr_field(&mut self, i: &'ast ExprField)

source§

fn visit_expr_for_loop(&mut self, i: &'ast ExprForLoop)

source§

fn visit_expr_group(&mut self, i: &'ast ExprGroup)

source§

fn visit_expr_if(&mut self, i: &'ast ExprIf)

source§

fn visit_expr_index(&mut self, i: &'ast ExprIndex)

source§

fn visit_expr_let(&mut self, i: &'ast ExprLet)

source§

fn visit_expr_lit(&mut self, i: &'ast ExprLit)

source§

fn visit_expr_loop(&mut self, i: &'ast ExprLoop)

source§

fn visit_expr_macro(&mut self, i: &'ast ExprMacro)

source§

fn visit_expr_match(&mut self, i: &'ast ExprMatch)

source§

fn visit_expr_method_call(&mut self, i: &'ast ExprMethodCall)

source§

fn visit_expr_paren(&mut self, i: &'ast ExprParen)

source§

fn visit_expr_path(&mut self, i: &'ast ExprPath)

source§

fn visit_expr_range(&mut self, i: &'ast ExprRange)

source§

fn visit_expr_reference(&mut self, i: &'ast ExprReference)

source§

fn visit_expr_repeat(&mut self, i: &'ast ExprRepeat)

source§

fn visit_expr_return(&mut self, i: &'ast ExprReturn)

source§

fn visit_expr_struct(&mut self, i: &'ast ExprStruct)

source§

fn visit_expr_try(&mut self, i: &'ast ExprTry)

source§

fn visit_expr_try_block(&mut self, i: &'ast ExprTryBlock)

source§

fn visit_expr_tuple(&mut self, i: &'ast ExprTuple)

source§

fn visit_expr_type(&mut self, i: &'ast ExprType)

source§

fn visit_expr_unary(&mut self, i: &'ast ExprUnary)

source§

fn visit_expr_unsafe(&mut self, i: &'ast ExprUnsafe)

source§

fn visit_expr_while(&mut self, i: &'ast ExprWhile)

source§

fn visit_expr_yield(&mut self, i: &'ast ExprYield)

source§

fn visit_field(&mut self, i: &'ast Field)

source§

fn visit_field_pat(&mut self, i: &'ast FieldPat)

source§

fn visit_field_value(&mut self, i: &'ast FieldValue)

source§

fn visit_fields(&mut self, i: &'ast Fields)

source§

fn visit_fields_named(&mut self, i: &'ast FieldsNamed)

source§

fn visit_fields_unnamed(&mut self, i: &'ast FieldsUnnamed)

source§

fn visit_file(&mut self, i: &'ast File)

source§

fn visit_fn_arg(&mut self, i: &'ast FnArg)

source§

fn visit_foreign_item(&mut self, i: &'ast ForeignItem)

source§

fn visit_foreign_item_fn(&mut self, i: &'ast ForeignItemFn)

source§

fn visit_foreign_item_macro(&mut self, i: &'ast ForeignItemMacro)

source§

fn visit_foreign_item_static(&mut self, i: &'ast ForeignItemStatic)

source§

fn visit_foreign_item_type(&mut self, i: &'ast ForeignItemType)

source§

fn visit_generic_argument(&mut self, i: &'ast GenericArgument)

source§

fn visit_generic_method_argument(&mut self, i: &'ast GenericMethodArgument)

source§

fn visit_generic_param(&mut self, i: &'ast GenericParam)

source§

fn visit_generics(&mut self, i: &'ast Generics)

source§

fn visit_ident(&mut self, i: &'ast Ident)

source§

fn visit_impl_item(&mut self, i: &'ast ImplItem)

source§

fn visit_impl_item_const(&mut self, i: &'ast ImplItemConst)

source§

fn visit_impl_item_macro(&mut self, i: &'ast ImplItemMacro)

source§

fn visit_impl_item_method(&mut self, i: &'ast ImplItemMethod)

source§

fn visit_impl_item_type(&mut self, i: &'ast ImplItemType)

source§

fn visit_index(&mut self, i: &'ast Index)

source§

fn visit_item(&mut self, i: &'ast Item)

source§

fn visit_item_const(&mut self, i: &'ast ItemConst)

source§

fn visit_item_enum(&mut self, i: &'ast ItemEnum)

source§

fn visit_item_extern_crate(&mut self, i: &'ast ItemExternCrate)

source§

fn visit_item_fn(&mut self, i: &'ast ItemFn)

source§

fn visit_item_foreign_mod(&mut self, i: &'ast ItemForeignMod)

source§

fn visit_item_impl(&mut self, i: &'ast ItemImpl)

source§

fn visit_item_macro(&mut self, i: &'ast ItemMacro)

source§

fn visit_item_macro2(&mut self, i: &'ast ItemMacro2)

source§

fn visit_item_mod(&mut self, i: &'ast ItemMod)

source§

fn visit_item_static(&mut self, i: &'ast ItemStatic)

source§

fn visit_item_trait(&mut self, i: &'ast ItemTrait)

source§

fn visit_item_trait_alias(&mut self, i: &'ast ItemTraitAlias)

source§

fn visit_item_type(&mut self, i: &'ast ItemType)

source§

fn visit_item_union(&mut self, i: &'ast ItemUnion)

source§

fn visit_item_use(&mut self, i: &'ast ItemUse)

source§

fn visit_label(&mut self, i: &'ast Label)

source§

fn visit_lifetime(&mut self, i: &'ast Lifetime)

source§

fn visit_lifetime_def(&mut self, i: &'ast LifetimeDef)

source§

fn visit_lit(&mut self, i: &'ast Lit)

source§

fn visit_lit_bool(&mut self, i: &'ast LitBool)

source§

fn visit_lit_byte(&mut self, i: &'ast LitByte)

source§

fn visit_lit_byte_str(&mut self, i: &'ast LitByteStr)

source§

fn visit_lit_char(&mut self, i: &'ast LitChar)

source§

fn visit_lit_float(&mut self, i: &'ast LitFloat)

source§

fn visit_lit_int(&mut self, i: &'ast LitInt)

source§

fn visit_lit_str(&mut self, i: &'ast LitStr)

source§

fn visit_local(&mut self, i: &'ast Local)

source§

fn visit_macro(&mut self, i: &'ast Macro)

source§

fn visit_macro_delimiter(&mut self, i: &'ast MacroDelimiter)

source§

fn visit_member(&mut self, i: &'ast Member)

source§

fn visit_meta(&mut self, i: &'ast Meta)

source§

fn visit_meta_list(&mut self, i: &'ast MetaList)

source§

fn visit_meta_name_value(&mut self, i: &'ast MetaNameValue)

source§

fn visit_method_turbofish(&mut self, i: &'ast MethodTurbofish)

source§

fn visit_nested_meta(&mut self, i: &'ast NestedMeta)

source§

fn visit_parenthesized_generic_arguments( &mut self, i: &'ast ParenthesizedGenericArguments )

source§

fn visit_pat(&mut self, i: &'ast Pat)

source§

fn visit_pat_box(&mut self, i: &'ast PatBox)

source§

fn visit_pat_ident(&mut self, i: &'ast PatIdent)

source§

fn visit_pat_lit(&mut self, i: &'ast PatLit)

source§

fn visit_pat_macro(&mut self, i: &'ast PatMacro)

source§

fn visit_pat_or(&mut self, i: &'ast PatOr)

source§

fn visit_pat_path(&mut self, i: &'ast PatPath)

source§

fn visit_pat_range(&mut self, i: &'ast PatRange)

source§

fn visit_pat_reference(&mut self, i: &'ast PatReference)

source§

fn visit_pat_rest(&mut self, i: &'ast PatRest)

source§

fn visit_pat_slice(&mut self, i: &'ast PatSlice)

source§

fn visit_pat_struct(&mut self, i: &'ast PatStruct)

source§

fn visit_pat_tuple(&mut self, i: &'ast PatTuple)

source§

fn visit_pat_tuple_struct(&mut self, i: &'ast PatTupleStruct)

source§

fn visit_pat_type(&mut self, i: &'ast PatType)

source§

fn visit_pat_wild(&mut self, i: &'ast PatWild)

source§

fn visit_path(&mut self, i: &'ast Path)

source§

fn visit_path_arguments(&mut self, i: &'ast PathArguments)

source§

fn visit_path_segment(&mut self, i: &'ast PathSegment)

source§

fn visit_predicate_eq(&mut self, i: &'ast PredicateEq)

source§

fn visit_predicate_lifetime(&mut self, i: &'ast PredicateLifetime)

source§

fn visit_predicate_type(&mut self, i: &'ast PredicateType)

source§

fn visit_qself(&mut self, i: &'ast QSelf)

source§

fn visit_range_limits(&mut self, i: &'ast RangeLimits)

source§

fn visit_receiver(&mut self, i: &'ast Receiver)

source§

fn visit_return_type(&mut self, i: &'ast ReturnType)

source§

fn visit_signature(&mut self, i: &'ast Signature)

source§

fn visit_span(&mut self, i: &Span)

source§

fn visit_stmt(&mut self, i: &'ast Stmt)

source§

fn visit_trait_bound(&mut self, i: &'ast TraitBound)

source§

fn visit_trait_bound_modifier(&mut self, i: &'ast TraitBoundModifier)

source§

fn visit_trait_item(&mut self, i: &'ast TraitItem)

source§

fn visit_trait_item_const(&mut self, i: &'ast TraitItemConst)

source§

fn visit_trait_item_macro(&mut self, i: &'ast TraitItemMacro)

source§

fn visit_trait_item_method(&mut self, i: &'ast TraitItemMethod)

source§

fn visit_trait_item_type(&mut self, i: &'ast TraitItemType)

source§

fn visit_type(&mut self, i: &'ast Type)

source§

fn visit_type_array(&mut self, i: &'ast TypeArray)

source§

fn visit_type_bare_fn(&mut self, i: &'ast TypeBareFn)

source§

fn visit_type_group(&mut self, i: &'ast TypeGroup)

source§

fn visit_type_impl_trait(&mut self, i: &'ast TypeImplTrait)

source§

fn visit_type_infer(&mut self, i: &'ast TypeInfer)

source§

fn visit_type_macro(&mut self, i: &'ast TypeMacro)

source§

fn visit_type_never(&mut self, i: &'ast TypeNever)

source§

fn visit_type_param(&mut self, i: &'ast TypeParam)

source§

fn visit_type_param_bound(&mut self, i: &'ast TypeParamBound)

source§

fn visit_type_paren(&mut self, i: &'ast TypeParen)

source§

fn visit_type_path(&mut self, i: &'ast TypePath)

source§

fn visit_type_ptr(&mut self, i: &'ast TypePtr)

source§

fn visit_type_reference(&mut self, i: &'ast TypeReference)

source§

fn visit_type_slice(&mut self, i: &'ast TypeSlice)

source§

fn visit_type_trait_object(&mut self, i: &'ast TypeTraitObject)

source§

fn visit_type_tuple(&mut self, i: &'ast TypeTuple)

source§

fn visit_un_op(&mut self, i: &'ast UnOp)

source§

fn visit_use_glob(&mut self, i: &'ast UseGlob)

source§

fn visit_use_group(&mut self, i: &'ast UseGroup)

source§

fn visit_use_name(&mut self, i: &'ast UseName)

source§

fn visit_use_path(&mut self, i: &'ast UsePath)

source§

fn visit_use_rename(&mut self, i: &'ast UseRename)

source§

fn visit_use_tree(&mut self, i: &'ast UseTree)

source§

fn visit_variadic(&mut self, i: &'ast Variadic)

source§

fn visit_variant(&mut self, i: &'ast Variant)

source§

fn visit_vis_crate(&mut self, i: &'ast VisCrate)

source§

fn visit_vis_public(&mut self, i: &'ast VisPublic)

source§

fn visit_vis_restricted(&mut self, i: &'ast VisRestricted)

source§

fn visit_visibility(&mut self, i: &'ast Visibility)

source§

fn visit_where_clause(&mut self, i: &'ast WhereClause)

source§

fn visit_where_predicate(&mut self, i: &'ast WherePredicate)

Auto Trait Implementations§

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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.

§

impl<D> OwoColorize for D

§

fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>
where C: Color,

Set the foreground color generically Read more
§

fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>
where C: Color,

Set the background color generically. Read more
§

fn black<'a>(&'a self) -> FgColorDisplay<'a, Black, Self>

Change the foreground color to black
§

fn on_black<'a>(&'a self) -> BgColorDisplay<'a, Black, Self>

Change the background color to black
§

fn red<'a>(&'a self) -> FgColorDisplay<'a, Red, Self>

Change the foreground color to red
§

fn on_red<'a>(&'a self) -> BgColorDisplay<'a, Red, Self>

Change the background color to red
§

fn green<'a>(&'a self) -> FgColorDisplay<'a, Green, Self>

Change the foreground color to green
§

fn on_green<'a>(&'a self) -> BgColorDisplay<'a, Green, Self>

Change the background color to green
§

fn yellow<'a>(&'a self) -> FgColorDisplay<'a, Yellow, Self>

Change the foreground color to yellow
§

fn on_yellow<'a>(&'a self) -> BgColorDisplay<'a, Yellow, Self>

Change the background color to yellow
§

fn blue<'a>(&'a self) -> FgColorDisplay<'a, Blue, Self>

Change the foreground color to blue
§

fn on_blue<'a>(&'a self) -> BgColorDisplay<'a, Blue, Self>

Change the background color to blue
§

fn magenta<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>

Change the foreground color to magenta
§

fn on_magenta<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>

Change the background color to magenta
§

fn purple<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>

Change the foreground color to purple
§

fn on_purple<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>

Change the background color to purple
§

fn cyan<'a>(&'a self) -> FgColorDisplay<'a, Cyan, Self>

Change the foreground color to cyan
§

fn on_cyan<'a>(&'a self) -> BgColorDisplay<'a, Cyan, Self>

Change the background color to cyan
§

fn white<'a>(&'a self) -> FgColorDisplay<'a, White, Self>

Change the foreground color to white
§

fn on_white<'a>(&'a self) -> BgColorDisplay<'a, White, Self>

Change the background color to white
§

fn default_color<'a>(&'a self) -> FgColorDisplay<'a, Default, Self>

Change the foreground color to the terminal default
§

fn on_default_color<'a>(&'a self) -> BgColorDisplay<'a, Default, Self>

Change the background color to the terminal default
§

fn bright_black<'a>(&'a self) -> FgColorDisplay<'a, BrightBlack, Self>

Change the foreground color to bright black
§

fn on_bright_black<'a>(&'a self) -> BgColorDisplay<'a, BrightBlack, Self>

Change the background color to bright black
§

fn bright_red<'a>(&'a self) -> FgColorDisplay<'a, BrightRed, Self>

Change the foreground color to bright red
§

fn on_bright_red<'a>(&'a self) -> BgColorDisplay<'a, BrightRed, Self>

Change the background color to bright red
§

fn bright_green<'a>(&'a self) -> FgColorDisplay<'a, BrightGreen, Self>

Change the foreground color to bright green
§

fn on_bright_green<'a>(&'a self) -> BgColorDisplay<'a, BrightGreen, Self>

Change the background color to bright green
§

fn bright_yellow<'a>(&'a self) -> FgColorDisplay<'a, BrightYellow, Self>

Change the foreground color to bright yellow
§

fn on_bright_yellow<'a>(&'a self) -> BgColorDisplay<'a, BrightYellow, Self>

Change the background color to bright yellow
§

fn bright_blue<'a>(&'a self) -> FgColorDisplay<'a, BrightBlue, Self>

Change the foreground color to bright blue
§

fn on_bright_blue<'a>(&'a self) -> BgColorDisplay<'a, BrightBlue, Self>

Change the background color to bright blue
§

fn bright_magenta<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>

Change the foreground color to bright magenta
§

fn on_bright_magenta<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>

Change the background color to bright magenta
§

fn bright_purple<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>

Change the foreground color to bright purple
§

fn on_bright_purple<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>

Change the background color to bright purple
§

fn bright_cyan<'a>(&'a self) -> FgColorDisplay<'a, BrightCyan, Self>

Change the foreground color to bright cyan
§

fn on_bright_cyan<'a>(&'a self) -> BgColorDisplay<'a, BrightCyan, Self>

Change the background color to bright cyan
§

fn bright_white<'a>(&'a self) -> FgColorDisplay<'a, BrightWhite, Self>

Change the foreground color to bright white
§

fn on_bright_white<'a>(&'a self) -> BgColorDisplay<'a, BrightWhite, Self>

Change the background color to bright white
§

fn bold<'a>(&'a self) -> BoldDisplay<'a, Self>

Make the text bold
§

fn dimmed<'a>(&'a self) -> DimDisplay<'a, Self>

Make the text dim
§

fn italic<'a>(&'a self) -> ItalicDisplay<'a, Self>

Make the text italicized
§

fn underline<'a>(&'a self) -> UnderlineDisplay<'a, Self>

Make the text italicized
Make the text blink
Make the text blink (but fast!)
§

fn reversed<'a>(&'a self) -> ReversedDisplay<'a, Self>

Swap the foreground and background colors
§

fn hidden<'a>(&'a self) -> HiddenDisplay<'a, Self>

Hide the text
§

fn strikethrough<'a>(&'a self) -> StrikeThroughDisplay<'a, Self>

Cross out the text
§

fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the foreground color at runtime. Only use if you do not know which color will be used at compile-time. If the color is constant, use either OwoColorize::fg or a color-specific method, such as OwoColorize::green, Read more
§

fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the background color at runtime. Only use if you do not know what color to use at compile-time. If the color is constant, use either OwoColorize::bg or a color-specific method, such as OwoColorize::on_yellow, Read more
§

fn fg_rgb<const R: u8, const G: u8, const B: u8>( &self ) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the foreground color to a specific RGB value.
§

fn bg_rgb<const R: u8, const G: u8, const B: u8>( &self ) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the background color to a specific RGB value.
§

fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>

Sets the foreground color to an RGB value.
§

fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>

Sets the background color to an RGB value.
§

fn style(&self, style: Style) -> Styled<&Self>

Apply a runtime-determined style
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> RoundFrom<T> for T

§

fn round_from(x: T) -> T

Performs the conversion.
§

impl<T, U> RoundInto<U> for T
where U: RoundFrom<T>,

§

fn round_into(self) -> U

Performs the conversion.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more