[][src]Struct grid_sdk::protos::schema_state::PropertyValue

pub struct PropertyValue {
    pub name: String,
    pub data_type: PropertyDefinition_DataType,
    pub bytes_value: Vec<u8>,
    pub boolean_value: bool,
    pub number_value: i64,
    pub string_value: String,
    pub enum_value: u32,
    pub struct_values: RepeatedField<PropertyValue>,
    pub lat_long_value: SingularPtrField<LatLong>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

name: Stringdata_type: PropertyDefinition_DataTypebytes_value: Vec<u8>boolean_value: boolnumber_value: i64string_value: Stringenum_value: u32struct_values: RepeatedField<PropertyValue>lat_long_value: SingularPtrField<LatLong>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl PropertyValue[src]

pub fn new() -> PropertyValue[src]

pub fn get_name(&self) -> &str[src]

pub fn clear_name(&mut self)[src]

pub fn set_name(&mut self, v: String)[src]

pub fn mut_name(&mut self) -> &mut String[src]

pub fn take_name(&mut self) -> String[src]

pub fn get_data_type(&self) -> PropertyDefinition_DataType[src]

pub fn clear_data_type(&mut self)[src]

pub fn set_data_type(&mut self, v: PropertyDefinition_DataType)[src]

pub fn get_bytes_value(&self) -> &[u8][src]

pub fn clear_bytes_value(&mut self)[src]

pub fn set_bytes_value(&mut self, v: Vec<u8>)[src]

pub fn mut_bytes_value(&mut self) -> &mut Vec<u8>[src]

pub fn take_bytes_value(&mut self) -> Vec<u8>[src]

pub fn get_boolean_value(&self) -> bool[src]

pub fn clear_boolean_value(&mut self)[src]

pub fn set_boolean_value(&mut self, v: bool)[src]

pub fn get_number_value(&self) -> i64[src]

pub fn clear_number_value(&mut self)[src]

pub fn set_number_value(&mut self, v: i64)[src]

pub fn get_string_value(&self) -> &str[src]

pub fn clear_string_value(&mut self)[src]

pub fn set_string_value(&mut self, v: String)[src]

pub fn mut_string_value(&mut self) -> &mut String[src]

pub fn take_string_value(&mut self) -> String[src]

pub fn get_enum_value(&self) -> u32[src]

pub fn clear_enum_value(&mut self)[src]

pub fn set_enum_value(&mut self, v: u32)[src]

pub fn get_struct_values(&self) -> &[PropertyValue][src]

pub fn clear_struct_values(&mut self)[src]

pub fn set_struct_values(&mut self, v: RepeatedField<PropertyValue>)[src]

pub fn mut_struct_values(&mut self) -> &mut RepeatedField<PropertyValue>[src]

pub fn take_struct_values(&mut self) -> RepeatedField<PropertyValue>[src]

pub fn get_lat_long_value(&self) -> &LatLong[src]

pub fn clear_lat_long_value(&mut self)[src]

pub fn has_lat_long_value(&self) -> bool[src]

pub fn set_lat_long_value(&mut self, v: LatLong)[src]

pub fn mut_lat_long_value(&mut self) -> &mut LatLong[src]

pub fn take_lat_long_value(&mut self) -> LatLong[src]

Trait Implementations

impl FromProto<PropertyValue> for PropertyValue[src]

impl FromNative<PropertyValue> for PropertyValue[src]

impl IntoNative<PropertyValue> for PropertyValue[src]

impl IntoProto<PropertyValue> for PropertyValue[src]

impl PartialEq<PropertyValue> for PropertyValue[src]

impl Clone for PropertyValue[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for PropertyValue[src]

impl<'a> Default for &'a PropertyValue[src]

impl Debug for PropertyValue[src]

impl Message for PropertyValue[src]

fn write_to(&self, os: &mut CodedOutputStream) -> Result<(), ProtobufError>[src]

Write the message to the stream. Read more

fn write_length_delimited_to(
    &self,
    os: &mut CodedOutputStream
) -> Result<(), ProtobufError>
[src]

Write the message to the stream prepending the message with message length encoded as varint. Read more

fn write_length_delimited_to_vec(
    &self,
    vec: &mut Vec<u8>
) -> Result<(), ProtobufError>
[src]

Write the message to the vec, prepend the message with message length encoded as varint. Read more

fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), ProtobufError>[src]

Update this message object with fields read from given stream.

fn check_initialized(&self) -> Result<(), ProtobufError>[src]

Check if all required fields of this object are initialized.

fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), ProtobufError>[src]

Write the message to the writer.

fn write_to_vec(&self, v: &mut Vec<u8>) -> Result<(), ProtobufError>[src]

Write the message to bytes vec.

fn write_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to bytes vec.

fn write_length_delimited_to_writer(
    &self,
    w: &mut dyn Write
) -> Result<(), ProtobufError>
[src]

Write the message to the writer, prepend the message with message length encoded as varint. Read more

fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to the bytes vec, prepend the message with message length encoded as varint. Read more

fn type_id(&self) -> TypeId[src]

Get type id for downcasting.

impl Clear for PropertyValue[src]

impl ProtobufValue for PropertyValue[src]

fn as_any(&self) -> &(dyn Any + 'static)[src]

fn is_non_zero(&self) -> bool[src]

fn as_ref_copy(&self) -> ProtobufValueRef<'static>[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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