pub struct Strings {
pub decoded_strings: Vec<DecodedString>,
pub language_strings: Vec<StaticString>,
pub language_strings_missed: Vec<StaticString>,
pub stack_strings: Vec<StackString>,
pub static_strings: Vec<StaticString>,
pub tight_strings: Vec<StackString>,
}Expand description
字符串列表集合。
Fields§
§decoded_strings: Vec<DecodedString>§language_strings: Vec<StaticString>§language_strings_missed: Vec<StaticString>§stack_strings: Vec<StackString>§static_strings: Vec<StaticString>§tight_strings: Vec<StackString>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Strings
impl<'de> Deserialize<'de> for Strings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Strings
impl StructuralPartialEq for Strings
Auto Trait Implementations§
impl Freeze for Strings
impl RefUnwindSafe for Strings
impl Send for Strings
impl Sync for Strings
impl Unpin for Strings
impl UnwindSafe for Strings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more