Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/toml_edit/src/
Derror.rs6 pub struct TomlError { struct
13 impl TomlError { implementation
92 impl Display for TomlError { implementation
144 impl StdError for TomlError { implementation
Dkey.rs52 pub fn parse(repr: &str) -> Result<Vec<Self>, crate::TomlError> { in parse()
169 fn try_parse_simple(s: &str) -> Result<Key, crate::TomlError> { in try_parse_simple()
176 fn try_parse_path(s: &str) -> Result<Vec<Key>, crate::TomlError> { in try_parse_path()
/aosp_15_r20/external/rust/android-crates-io/crates/toml_edit/src/parser/
Dmod.rs18 pub(crate) fn parse_document(raw: &str) -> Result<crate::Document, TomlError> { in parse_document() argument
30 pub(crate) fn parse_key(raw: &str) -> Result<crate::Key, TomlError> { in parse_key() argument
43 pub(crate) fn parse_key_path(raw: &str) -> Result<Vec<crate::Key>, TomlError> { in parse_key_path() argument
59 pub(crate) fn parse_value(raw: &str) -> Result<crate::Value, TomlError> { in parse_value() argument
/aosp_15_r20/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()
/aosp_15_r20/external/rust/android-crates-io/crates/toml_edit/src/de/
Dmod.rs81 impl From<Error> for crate::TomlError { implementation
82 fn from(e: Error) -> crate::TomlError { in from()