SteveLauC commented on issue #9558:
URL:
https://github.com/apache/arrow-datafusion/issues/9558#issuecomment-1988550306
We can probably impl this method using td::any::type_name:
Something like
fn name(&self) -> &str {
let full_name = std::any::type_name::<Self>();
let start_idx = full_name.rfind(':').unwrap() + 1;
&full_name[start_idx..]
}
}
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]