Enum glean_core::MemoryUnit
source · #[repr(i32)]
pub enum MemoryUnit {
Byte,
Kilobyte,
Megabyte,
Gigabyte,
}
Expand description
Different resolutions supported by the memory related metric types (e.g. MemoryDistributionMetric).
Variants§
Implementations§
Trait Implementations§
source§impl Clone for MemoryUnit
impl Clone for MemoryUnit
source§fn clone(&self) -> MemoryUnit
fn clone(&self) -> MemoryUnit
Returns a copy 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 MemoryUnit
impl Debug for MemoryUnit
source§impl<'de> Deserialize<'de> for MemoryUnit
impl<'de> Deserialize<'de> for MemoryUnit
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 Serialize for MemoryUnit
impl Serialize for MemoryUnit
source§impl TryFrom<i32> for MemoryUnit
impl TryFrom<i32> for MemoryUnit
Trait implementation for converting an integer value
to a MemoryUnit
. This is used in the FFI code. Please
note that values should match the ordering of the platform
specific side of things (e.g. Kotlin implementation).