struct ReturnTails<'a> {
self_tail: Box<dyn Fn(&str, &str) -> Vec<String> + 'a>,
chain_tail: Box<dyn Fn(&str) -> Vec<String> + 'a>,
direct_tail: Box<dyn Fn(&str) -> Vec<String> + 'a>,
}Expand description
Class-specific tail closures, one per ReturnStrategy variant.
Each closure receives (indent, class_name) and produces the tail lines that
run after .val <- <call_expr> and the condition check (both emitted by
MethodReturnBuilder::build_with_tails). The tail therefore always
references .val directly.
class_name is "" for ReturnStrategy::ChainableMutation and
ReturnStrategy::Direct — those tails should not use it.
Fields§
§self_tail: Box<dyn Fn(&str, &str) -> Vec<String> + 'a>Tail for ReturnStrategy::ReturnSelf.
Parameters: (indent, class_name) -> lines
chain_tail: Box<dyn Fn(&str) -> Vec<String> + 'a>Tail for ReturnStrategy::ChainableMutation.
Parameters: (indent) -> lines
direct_tail: Box<dyn Fn(&str) -> Vec<String> + 'a>Tail for ReturnStrategy::Direct.
Parameters: (indent) -> lines
Auto Trait Implementations§
impl<'a> Freeze for ReturnTails<'a>
impl<'a> !RefUnwindSafe for ReturnTails<'a>
impl<'a> !Send for ReturnTails<'a>
impl<'a> !Sync for ReturnTails<'a>
impl<'a> Unpin for ReturnTails<'a>
impl<'a> UnsafeUnpin for ReturnTails<'a>
impl<'a> !UnwindSafe for ReturnTails<'a>
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
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)]const SIZE: usize = _
#[doc(hidden)]const SIZE: usize = _
sized_type_properties)Source§#[doc(hidden)]const ALIGN: usize = _
#[doc(hidden)]const ALIGN: usize = _
sized_type_properties)Source§#[doc(hidden)]const ALIGNMENT: Alignment = _
#[doc(hidden)]const ALIGNMENT: Alignment = _
ptr_alignment_type)Source§#[doc(hidden)]const IS_ZST: bool = _
#[doc(hidden)]const IS_ZST: bool = _
sized_type_properties)Source§#[doc(hidden)]const LAYOUT: Layout = _
#[doc(hidden)]const LAYOUT: Layout = _
sized_type_properties)Source§#[doc(hidden)]const MAX_SLICE_LEN: usize = _
#[doc(hidden)]const MAX_SLICE_LEN: usize = _
sized_type_properties)[Self]. Read moreLayout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 48 bytes