trkbt10/micado_mbt/src/types does not have a README file
pub(all) enum CharClass {
Hiragana
Katakana
Kanji
AsciiAlpha
AsciiDigit
Symbol
Other
}pub(all) struct ContextMorpheme {
surface : String
reading : String
pos : String
connection_id : Int
}pub(all) struct DictEntry {
surface : String
pos : POS
pos_detail : String
mecab_feature : String
left_id : Int
right_id : Int
word_cost : Int
}pub(all) struct LatticeNode {
start_pos : Int
end_pos : Int
pos : POS
pos_detail_id : Int
mecab_feature_id : Int
right_id : Int
best_cost : Int
best_prev : Int
}pub(all) struct Morpheme {
surface : String
pos : POS
pos_detail : String
mecab_feature : String
start_pos : Int
end_pos : Int
}pub(all) enum POS {
BosEos
NounGeneral
NounProper
NounNonIndependent
Particle
Unknown
}pub(all) struct ReadingCandidate {
surface : String
reading : String
pos : String
pos_detail : String
cost : Int
connection_id : Int
}pub(all) struct RuntimeEntry {
surface : String
left_id : Int
right_id : Int
word_cost : Int
feature : String
}pub(all) struct TokenCandidate {
start_pos : Int
end_pos : Int
pos : POS
pos_detail : String
mecab_feature : String
left_id : Int
right_id : Int
word_cost : Int
}