[−][src]Struct grid_sdk::protos::schema_state::PropertyDefinition
Fields
name: String
data_type: PropertyDefinition_DataType
required: bool
description: String
number_exponent: i32
enum_options: RepeatedField<String>
struct_properties: RepeatedField<PropertyDefinition>
unknown_fields: UnknownFields
cached_size: CachedSize
Methods
impl PropertyDefinition
[src]
pub fn new() -> PropertyDefinition
[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_required(&self) -> bool
[src]
pub fn clear_required(&mut self)
[src]
pub fn set_required(&mut self, v: bool)
[src]
pub fn get_description(&self) -> &str
[src]
pub fn clear_description(&mut self)
[src]
pub fn set_description(&mut self, v: String)
[src]
pub fn mut_description(&mut self) -> &mut String
[src]
pub fn take_description(&mut self) -> String
[src]
pub fn get_number_exponent(&self) -> i32
[src]
pub fn clear_number_exponent(&mut self)
[src]
pub fn set_number_exponent(&mut self, v: i32)
[src]
pub fn get_enum_options(&self) -> &[String]
[src]
pub fn clear_enum_options(&mut self)
[src]
pub fn set_enum_options(&mut self, v: RepeatedField<String>)
[src]
pub fn mut_enum_options(&mut self) -> &mut RepeatedField<String>
[src]
pub fn take_enum_options(&mut self) -> RepeatedField<String>
[src]
pub fn get_struct_properties(&self) -> &[PropertyDefinition]
[src]
pub fn clear_struct_properties(&mut self)
[src]
pub fn set_struct_properties(&mut self, v: RepeatedField<PropertyDefinition>)
[src]
pub fn mut_struct_properties(
&mut self
) -> &mut RepeatedField<PropertyDefinition>
[src]
&mut self
) -> &mut RepeatedField<PropertyDefinition>
pub fn take_struct_properties(&mut self) -> RepeatedField<PropertyDefinition>
[src]
Trait Implementations
impl FromProto<PropertyDefinition> for PropertyDefinition
[src]
fn from_proto(
property_definition: PropertyDefinition
) -> Result<Self, ProtoConversionError>
[src]
property_definition: PropertyDefinition
) -> Result<Self, ProtoConversionError>
impl FromNative<PropertyDefinition> for PropertyDefinition
[src]
fn from_native(
property_definition: PropertyDefinition
) -> Result<Self, ProtoConversionError>
[src]
property_definition: PropertyDefinition
) -> Result<Self, ProtoConversionError>
impl IntoNative<PropertyDefinition> for PropertyDefinition
[src]
fn into_native(self) -> Result<T, ProtoConversionError>
[src]
impl IntoProto<PropertyDefinition> for PropertyDefinition
[src]
fn into_proto(self) -> Result<T, ProtoConversionError>
[src]
impl PartialEq<PropertyDefinition> for PropertyDefinition
[src]
fn eq(&self, other: &PropertyDefinition) -> bool
[src]
fn ne(&self, other: &PropertyDefinition) -> bool
[src]
impl Clone for PropertyDefinition
[src]
fn clone(&self) -> PropertyDefinition
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Default for PropertyDefinition
[src]
fn default() -> PropertyDefinition
[src]
impl<'a> Default for &'a PropertyDefinition
[src]
fn default() -> &'a PropertyDefinition
[src]
impl Debug for PropertyDefinition
[src]
impl Message for PropertyDefinition
[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() -> PropertyDefinition
[src]
fn descriptor_static() -> &'static MessageDescriptor
[src]
fn default_instance() -> &'static PropertyDefinition
[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 PropertyDefinition
[src]
impl ProtobufValue for PropertyDefinition
[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 PropertyDefinition
impl Sync for PropertyDefinition
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,