clap_derive/utils/
mod.rs

1pub(crate) mod error;
2
3mod doc_comments;
4mod spanned;
5mod ty;
6
7pub(crate) use doc_comments::extract_doc_comment;
8pub(crate) use doc_comments::format_doc_comment;
9
10pub(crate) use self::{
11    spanned::Sp,
12    ty::{inner_type, is_simple_ty, sub_type, subty_if_name, Ty},
13};