pub enum TailUse {
Unused,
TailOnly,
NonTail,
Mixed,
}Expand description
Information about whether a variable is used only in tail position
Variants§
Unused
Never used
TailOnly
Used only in tail position
NonTail
Used in non-tail position
Mixed
Used in both tail and non-tail positions
Trait Implementations§
impl Eq for TailUse
impl StructuralPartialEq for TailUse
Auto Trait Implementations§
impl Freeze for TailUse
impl RefUnwindSafe for TailUse
impl Send for TailUse
impl Sync for TailUse
impl Unpin for TailUse
impl UnsafeUnpin for TailUse
impl UnwindSafe for TailUse
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