[−][src]Struct binjs::io::entropy::dictionary::UserExtensibleData
A container for all the user-extensible data in files, e.g. string literals or numbers.
This container is used to collect statistics, such as the number of instances of a given string in a file, or the number of files that contain a given string.
Fields
identifier_name_instances: HashMap<Option<IdentifierName>, T, RandomState>
Instances of IdentifierName.
property_key_instances: HashMap<Option<PropertyKey>, T, RandomState>
Instances of PropertyKey
interface_name_instances: HashMap<InterfaceName, T, RandomState>
Instances of InterfaceName
string_literal_instances: HashMap<Option<SharedString>, T, RandomState>
Instances of string literals.
string_enum_instances: HashMap<SharedString, T, RandomState>
Instances of string enums.
list_length_instances: HashMap<Option<u32>, T, RandomState>
Instances of list lengths.
float_instances: HashMap<Option<F64>, T, RandomState>
Instances of floating-point numbers.
unsigned_long_instances: HashMap<u32, T, RandomState>
Instances of unsigned longs.
Methods
impl<T> UserExtensibleData<T>
[src]
Trait Implementations
impl<T> Clone for UserExtensibleData<T> where
T: Clone,
[src]
T: Clone,
fn clone(&self) -> UserExtensibleData<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Debug for UserExtensibleData<T> where
T: Debug,
[src]
T: Debug,
impl<T> Default for UserExtensibleData<T> where
T: Default,
[src]
T: Default,
fn default() -> UserExtensibleData<T>
[src]
impl<'de, T> Deserialize<'de> for UserExtensibleData<T> where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<UserExtensibleData<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<UserExtensibleData<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl<T> Serialize for UserExtensibleData<T> where
T: Serialize,
[src]
T: Serialize,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Auto Trait Implementations
impl<T> !RefUnwindSafe for UserExtensibleData<T>
impl<T> !Send for UserExtensibleData<T>
impl<T> !Sync for UserExtensibleData<T>
impl<T> Unpin for UserExtensibleData<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for UserExtensibleData<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Downcast for T where
T: Any,
[src]
T: Any,
fn into_any(self: Box<T>) -> Box<dyn Any + 'static>
[src]
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
[src]
fn as_any(&self) -> &(dyn Any + 'static)
[src]
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,