pub trait ITalkTagParserMethods: ITalkTagParser {
// Provided methods
fn ctor(self) { ... }
fn parse(self, talk_ptr: impl Into<TalkPtr>) -> TalkTag { ... }
fn get_add_letter_tag_for_replace(self, chr: impl Into<u16>) -> TalkTag { ... }
fn reset_line_feed_enable(self) { ... }
}Provided Methods§
Sourcefn parse(self, talk_ptr: impl Into<TalkPtr>) -> TalkTag
fn parse(self, talk_ptr: impl Into<TalkPtr>) -> TalkTag
Parse(crate::app::talk3_d::talkptr::TalkPtr) overload
Sourcefn get_add_letter_tag_for_replace(self, chr: impl Into<u16>) -> TalkTag
fn get_add_letter_tag_for_replace(self, chr: impl Into<u16>) -> TalkTag
GetAddLetterTagForReplace(u16) overload
Sourcefn reset_line_feed_enable(self)
fn reset_line_feed_enable(self)
ResetLineFeedEnable() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: ITalkTagParser> ITalkTagParserMethods for __T
Available on crate feature
app-talk3_d-talktagparser only.