[][src]Enum glean_ffi::MemoryUnit

#[repr(i32)]pub enum MemoryUnit {
    Byte,
    Kilobyte,
    Megabyte,
    Gigabyte,
}

Different resolutions supported by the memory related metric types (e.g. MemoryDistributionMetric).

Variants

Byte

1 byte

Kilobyte

2^10 bytes

Megabyte

2^20 bytes

Gigabyte

2^30 bytes

Implementations

impl MemoryUnit[src]

pub fn as_bytes(self, value: u64) -> u64[src]

Converts a value in the given unit to bytes.

Arguments

  • value - the value to convert.

Returns

The integer representation of the byte value.

Trait Implementations

impl Clone for MemoryUnit[src]

impl Copy for MemoryUnit[src]

impl Debug for MemoryUnit[src]

impl<'de> Deserialize<'de> for MemoryUnit[src]

impl Serialize for MemoryUnit[src]

impl TryFrom<i32> for MemoryUnit[src]

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).

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> EncodableKey for T where
    T: Serialize

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,