Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/toml_edit/src/ser/
Dkey.rs18 fn serialize_bool(self, _v: bool) -> Result<InternalString, Self::Error> { in serialize_bool()
22 fn serialize_i8(self, _v: i8) -> Result<InternalString, Self::Error> { in serialize_i8()
26 fn serialize_i16(self, _v: i16) -> Result<InternalString, Self::Error> { in serialize_i16()
30 fn serialize_i32(self, _v: i32) -> Result<InternalString, Self::Error> { in serialize_i32()
34 fn serialize_i64(self, _v: i64) -> Result<InternalString, Self::Error> { in serialize_i64()
38 fn serialize_u8(self, _v: u8) -> Result<InternalString, Self::Error> { in serialize_u8()
42 fn serialize_u16(self, _v: u16) -> Result<InternalString, Self::Error> { in serialize_u16()
46 fn serialize_u32(self, _v: u32) -> Result<InternalString, Self::Error> { in serialize_u32()
50 fn serialize_u64(self, _v: u64) -> Result<InternalString, Self::Error> { in serialize_u64()
54 fn serialize_f32(self, _v: f32) -> Result<InternalString, Self::Error> { in serialize_f32()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/toml_edit/src/
Dinternal_string.rs6 pub struct InternalString(Inner); struct
13 impl InternalString { implementation
26 impl std::fmt::Debug for InternalString { implementation
33 impl std::ops::Deref for InternalString { implementation
42 impl Borrow<str> for InternalString { implementation
49 impl AsRef<str> for InternalString { implementation
56 impl From<&str> for InternalString { implementation
68 impl From<String> for InternalString { implementation
76 impl From<&String> for InternalString { implementation
83 impl From<&InternalString> for InternalString { implementation
[all …]
Dkey.rs89 pub(crate) fn get_internal(&self) -> &InternalString { in get_internal()
327 impl From<Key> for InternalString { implementation
328 fn from(key: Key) -> InternalString { in from()
Dinline_table.rs368 key: impl Into<InternalString>, in get_or_insert()
381 pub fn insert(&mut self, key: impl Into<InternalString>, value: Value) -> Option<Value> { in insert()
/aosp_15_r20/external/rust/android-crates-io/crates/toml_edit/src/parser/
Dkey.rs70 pub(crate) fn simple_key(input: &mut Input<'_>) -> PResult<(RawString, InternalString)> { in simple_key() argument
/aosp_15_r20/external/rust/android-crates-io/crates/toml_edit/src/de/
Dkey.rs11 pub(crate) fn new(key: crate::InternalString, span: Option<std::ops::Range<usize>>) -> Self { in new()