pub trait ExprArrayExtension {
// Required method
fn get_self(&self) -> &ExprArray;
// Provided method
fn as_path_list(&self) -> PathList { ... }
}Required Methods§
Provided Methods§
Sourcefn as_path_list(&self) -> PathList
fn as_path_list(&self) -> PathList
Converts the expression array into a PathList with a dummy path.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".