pub(crate) trait LitExt<'ast> {
// Required method
fn is_str_concatenation(&self) -> bool;
}Required Methods§
fn is_str_concatenation(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl<'ast> LitExt<'ast> for Lit<'ast>
impl<'ast> LitExt<'ast> for Lit<'ast>
Source§fn is_str_concatenation(&self) -> bool
fn is_str_concatenation(&self) -> bool
Checks if a the input literal is a string literal with multiple parts.