[−][src]Struct grid_sdk::protos::schema_state::PropertyValue
Fields
name: String
data_type: PropertyDefinition_DataType
bytes_value: Vec<u8>
boolean_value: bool
number_value: i64
string_value: String
enum_value: u32
struct_values: RepeatedField<PropertyValue>
lat_long_value: SingularPtrField<LatLong>
unknown_fields: UnknownFields
cached_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]
fn from_proto(
property_value: PropertyValue
) -> Result<Self, ProtoConversionError>
[src]
property_value: PropertyValue
) -> Result<Self, ProtoConversionError>
impl FromNative<PropertyValue> for PropertyValue
[src]
fn from_native(
property_value: PropertyValue
) -> Result<Self, ProtoConversionError>
[src]
property_value: PropertyValue
) -> Result<Self, ProtoConversionError>
impl IntoNative<PropertyValue> for PropertyValue
[src]
fn into_native(self) -> Result<T, ProtoConversionError>
[src]
impl IntoProto<PropertyValue> for PropertyValue
[src]
fn into_proto(self) -> Result<T, ProtoConversionError>
[src]
impl PartialEq<PropertyValue> for PropertyValue
[src]
fn eq(&self, other: &PropertyValue) -> bool
[src]
fn ne(&self, other: &PropertyValue) -> bool
[src]
impl Clone for PropertyValue
[src]
fn clone(&self) -> 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]
fn default() -> PropertyValue
[src]
impl<'a> Default for &'a PropertyValue
[src]
fn default() -> &'a PropertyValue
[src]
impl Debug for PropertyValue
[src]
impl Message for PropertyValue
[src]
fn is_initialized(&self) -> bool
[src]
fn merge_from(&mut self, is: &mut CodedInputStream) -> ProtobufResult<()>
[src]
fn compute_size(&self) -> u32
[src]
fn write_to_with_cached_sizes(
&self,
os: &mut CodedOutputStream
) -> ProtobufResult<()>
[src]
&self,
os: &mut CodedOutputStream
) -> ProtobufResult<()>
fn get_cached_size(&self) -> u32
[src]
fn get_unknown_fields(&self) -> &UnknownFields
[src]
fn mut_unknown_fields(&mut self) -> &mut UnknownFields
[src]
fn as_any(&self) -> &dyn Any
[src]
fn as_any_mut(&mut self) -> &mut dyn Any
[src]
fn into_any(self: Box<Self>) -> Box<dyn Any>
[src]
fn descriptor(&self) -> &'static MessageDescriptor
[src]
fn new() -> PropertyValue
[src]
fn descriptor_static() -> &'static MessageDescriptor
[src]
fn default_instance() -> &'static 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]
&self,
os: &mut CodedOutputStream
) -> Result<(), ProtobufError>
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]
&self,
vec: &mut Vec<u8>
) -> Result<(), ProtobufError>
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]
&self,
w: &mut dyn Write
) -> Result<(), ProtobufError>
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_ref(&self) -> ProtobufValueRef
[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
impl Send for PropertyValue
impl Sync for PropertyValue
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,