usecrate::language::parsed;usesway_types::ident::Ident;#[derive(Clone, Debug, PartialEq, Eq, Hash)]pubstructTyUseStatement{pubcall_path:Vec<Ident>,
pubimport_type:parsed::ImportType,
// If `is_absolute` is true, then this use statement is an absolute path from
// the project root namespace. If not, then it is relative to the current namespace.
pubis_absolute:bool,
pubalias:Option<Ident>,
}