pub struct DecodedString {
pub address: Address,
pub address_type: AddressType,
pub decoded_at: Address,
pub decoding_routine: Address,
pub encoding: StringEncoding,
pub string: String,
}Expand description
解码字符串(decoded strings)。
Fields§
§address: Address§address_type: AddressType§decoded_at: Address§decoding_routine: Address§encoding: StringEncoding§string: StringTrait Implementations§
Source§impl Clone for DecodedString
impl Clone for DecodedString
Source§fn clone(&self) -> DecodedString
fn clone(&self) -> DecodedString
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DecodedString
impl Debug for DecodedString
Source§impl<'de> Deserialize<'de> for DecodedString
impl<'de> Deserialize<'de> for DecodedString
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
Source§impl PartialEq for DecodedString
impl PartialEq for DecodedString
Source§impl Serialize for DecodedString
impl Serialize for DecodedString
impl Eq for DecodedString
impl StructuralPartialEq for DecodedString
Auto Trait Implementations§
impl Freeze for DecodedString
impl RefUnwindSafe for DecodedString
impl Send for DecodedString
impl Sync for DecodedString
impl Unpin for DecodedString
impl UnwindSafe for DecodedString
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