Home
last modified time | relevance | path

Searched defs:TomlError (Results 1 – 6 of 6) sorted by relevance

/external/rust/android-crates-io/crates/toml_edit/src/
Derror.rs6 pub struct TomlError { struct
13 impl TomlError { argument
99 impl Display for TomlError { implementation
154 impl StdError for TomlError { implementation
Dkey.rs52 pub fn parse(repr: &str) -> Result<Vec<Self>, crate::TomlError> { in parse()
173 fn try_parse_simple(s: &str) -> Result<Key, crate::TomlError> { in try_parse_simple()
180 fn try_parse_path(s: &str) -> Result<Vec<Key>, crate::TomlError> { in try_parse_path()
Ddocument.rs25 pub fn parse(raw: S) -> Result<Self, crate::TomlError> { in parse()
/external/rust/android-crates-io/crates/toml_edit/src/parser/
Dmod.rs19 pub(crate) fn parse_document<S: AsRef<str>>(raw: S) -> Result<crate::ImDocument<S>, TomlError> { in parse_document() argument
35 pub(crate) fn parse_key(raw: &str) -> Result<crate::Key, TomlError> { in parse_key() argument
48 pub(crate) fn parse_key_path(raw: &str) -> Result<Vec<crate::Key>, TomlError> { in parse_key_path() argument
64 pub(crate) fn parse_value(raw: &str) -> Result<crate::Value, TomlError> { in parse_value() argument
/external/rust/android-crates-io/crates/toml_edit/src/ser/
Dmod.rs74 impl From<Error> for crate::TomlError { implementation
75 fn from(e: Error) -> crate::TomlError { in from()
/external/rust/android-crates-io/crates/toml_edit/src/de/
Dmod.rs80 impl From<Error> for crate::TomlError { implementation
81 fn from(e: Error) -> crate::TomlError { in from()