Enum android_logd_logger::EventValue
source · [−]pub enum EventValue {
Void,
Int(i32),
Long(i64),
Float(f32),
String(String),
List(Vec<EventValue>),
}
Expand description
Event’s value
Variants
Void
Void value
Int(i32)
Int value
Long(i64)
Long value
Float(f32)
Float value
String(String)
String value
List(Vec<EventValue>)
List of values
Implementations
sourceimpl EventValue
impl EventValue
Trait Implementations
sourceimpl Clone for EventValue
impl Clone for EventValue
sourcefn clone(&self) -> EventValue
fn clone(&self) -> EventValue
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for EventValue
impl Debug for EventValue
sourceimpl From<&'_ str> for EventValue
impl From<&'_ str> for EventValue
sourceimpl From<()> for EventValue
impl From<()> for EventValue
sourceimpl<T> From<Vec<T, Global>> for EventValue where
T: Into<EventValue>,
impl<T> From<Vec<T, Global>> for EventValue where
T: Into<EventValue>,
sourceimpl From<f32> for EventValue
impl From<f32> for EventValue
sourceimpl From<i32> for EventValue
impl From<i32> for EventValue
sourceimpl From<i64> for EventValue
impl From<i64> for EventValue
sourceimpl<T> FromIterator<T> for EventValue where
T: Into<EventValue>,
impl<T> FromIterator<T> for EventValue where
T: Into<EventValue>,
sourcefn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
Creates a value from an iterator. Read more
sourceimpl PartialEq<EventValue> for EventValue
impl PartialEq<EventValue> for EventValue
sourcefn eq(&self, other: &EventValue) -> bool
fn eq(&self, other: &EventValue) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EventValue) -> bool
fn ne(&self, other: &EventValue) -> bool
This method tests for !=
.
impl StructuralPartialEq for EventValue
Auto Trait Implementations
impl RefUnwindSafe for EventValue
impl Send for EventValue
impl Sync for EventValue
impl Unpin for EventValue
impl UnwindSafe for EventValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more