pub enum Value_oneof_kind {
null_value(NullValue),
number_value(f64),
string_value(String),
bool_value(bool),
struct_value(Struct),
list_value(ListValue),
}
Variants§
null_value(NullValue)
number_value(f64)
string_value(String)
bool_value(bool)
struct_value(Struct)
list_value(ListValue)
Trait Implementations§
source§impl Clone for Value_oneof_kind
impl Clone for Value_oneof_kind
source§fn clone(&self) -> Value_oneof_kind
fn clone(&self) -> Value_oneof_kind
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 Value_oneof_kind
impl Debug for Value_oneof_kind
source§impl PartialEq<Value_oneof_kind> for Value_oneof_kind
impl PartialEq<Value_oneof_kind> for Value_oneof_kind
source§fn eq(&self, other: &Value_oneof_kind) -> bool
fn eq(&self, other: &Value_oneof_kind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Value_oneof_kind
Auto Trait Implementations§
impl RefUnwindSafe for Value_oneof_kind
impl Send for Value_oneof_kind
impl Sync for Value_oneof_kind
impl Unpin for Value_oneof_kind
impl UnwindSafe for Value_oneof_kind
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