Struct protobuf::descriptor::ExtensionRangeOptions
source · [−]pub struct ExtensionRangeOptions {
pub uninterpreted_option: Vec<UninterpretedOption>,
pub special_fields: SpecialFields,
}
Fields
uninterpreted_option: Vec<UninterpretedOption>
The parser stores options it doesn’t recognize here. See above.
special_fields: SpecialFields
Implementations
sourceimpl ExtensionRangeOptions
impl ExtensionRangeOptions
pub fn new() -> ExtensionRangeOptions
Trait Implementations
sourceimpl Clone for ExtensionRangeOptions
impl Clone for ExtensionRangeOptions
sourcefn clone(&self) -> ExtensionRangeOptions
fn clone(&self) -> ExtensionRangeOptions
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 ExtensionRangeOptions
impl Debug for ExtensionRangeOptions
sourceimpl Default for ExtensionRangeOptions
impl Default for ExtensionRangeOptions
sourcefn default() -> ExtensionRangeOptions
fn default() -> ExtensionRangeOptions
Returns the “default value” for a type. Read more
sourceimpl<'a> Default for &'a ExtensionRangeOptions
impl<'a> Default for &'a ExtensionRangeOptions
sourcefn default() -> &'a ExtensionRangeOptions
fn default() -> &'a ExtensionRangeOptions
Returns the “default value” for a type. Read more
sourceimpl Display for ExtensionRangeOptions
impl Display for ExtensionRangeOptions
sourceimpl Message for ExtensionRangeOptions
impl Message for ExtensionRangeOptions
sourceconst NAME: &'static str = "ExtensionRangeOptions"
const NAME: &'static str = "ExtensionRangeOptions"
Message name as specified in .proto
file. Read more
sourcefn is_initialized(&self) -> bool
fn is_initialized(&self) -> bool
True iff all required fields are initialized.
Always returns true
for protobuf 3. Read more
sourcefn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> Result<()>
fn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> Result<()>
Update this message object with fields read from given stream.
sourcefn compute_size(&self) -> u64
fn compute_size(&self) -> u64
Compute and cache size of this message and all nested messages. Read more
sourcefn write_to_with_cached_sizes(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
fn write_to_with_cached_sizes(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
Write message to the stream. Read more
sourcefn special_fields(&self) -> &SpecialFields
fn special_fields(&self) -> &SpecialFields
Special fields (unknown fields and cached size).
sourcefn mut_special_fields(&mut self) -> &mut SpecialFields
fn mut_special_fields(&mut self) -> &mut SpecialFields
Special fields (unknown fields and cached size).
sourcefn new() -> ExtensionRangeOptions
fn new() -> ExtensionRangeOptions
Create an empty message object. Read more
sourcefn default_instance() -> &'static ExtensionRangeOptions
fn default_instance() -> &'static ExtensionRangeOptions
Return a pointer to default immutable message with static lifetime. Read more
sourcefn parse_from(is: &mut CodedInputStream<'_>) -> Result<Self>
fn parse_from(is: &mut CodedInputStream<'_>) -> Result<Self>
Parse message from stream.
sourcefn cached_size(&self) -> u32
fn cached_size(&self) -> u32
Get size previously computed by compute_size
. Read more
sourcefn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<()>
fn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<()>
Write the message to the stream. Read more
sourcefn write_length_delimited_to(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
fn write_length_delimited_to(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
Write the message to the stream prepending the message with message length encoded as varint. Read more
sourcefn write_length_delimited_to_vec(&self, vec: &mut Vec<u8>) -> Result<()>
fn write_length_delimited_to_vec(&self, vec: &mut Vec<u8>) -> Result<()>
Write the message to the vec, prepend the message with message length encoded as varint. Read more
sourcefn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<()>
fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<()>
Update this message object with fields read from given stream.
sourcefn parse_from_reader(reader: &mut dyn Read) -> Result<Self>
fn parse_from_reader(reader: &mut dyn Read) -> Result<Self>
Parse message from reader. Parse stops on EOF or when error encountered. Read more
sourcefn parse_from_tokio_bytes(bytes: &Bytes) -> Result<Self>
fn parse_from_tokio_bytes(bytes: &Bytes) -> Result<Self>
Parse message from Bytes
object.
Resulting message may share references to the passed bytes object. Read more
sourcefn check_initialized(&self) -> Result<()>
fn check_initialized(&self) -> Result<()>
Check if all required fields of this object are initialized.
sourcefn write_to_writer(&self, w: &mut dyn Write) -> Result<()>
fn write_to_writer(&self, w: &mut dyn Write) -> Result<()>
Write the message to the writer.
sourcefn write_length_delimited_to_writer(&self, w: &mut dyn Write) -> Result<()>
fn write_length_delimited_to_writer(&self, w: &mut dyn Write) -> Result<()>
Write the message to the writer, prepend the message with message length encoded as varint. Read more
sourcefn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>>
fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>>
Write the message to the bytes vec, prepend the message with message length encoded as varint. Read more
sourcefn unknown_fields(&self) -> &UnknownFields
fn unknown_fields(&self) -> &UnknownFields
Get a reference to unknown fields.
sourcefn mut_unknown_fields(&mut self) -> &mut UnknownFields
fn mut_unknown_fields(&mut self) -> &mut UnknownFields
Get a mutable reference to unknown fields.
sourceimpl MessageFull for ExtensionRangeOptions
impl MessageFull for ExtensionRangeOptions
sourcefn descriptor() -> MessageDescriptor
fn descriptor() -> MessageDescriptor
Get message descriptor for message type. Read more
sourcefn reflect_eq(&self, other: &Self, mode: &ReflectEqMode) -> bool
fn reflect_eq(&self, other: &Self, mode: &ReflectEqMode) -> bool
Reflective equality. Read more
sourceimpl PartialEq<ExtensionRangeOptions> for ExtensionRangeOptions
impl PartialEq<ExtensionRangeOptions> for ExtensionRangeOptions
sourcefn eq(&self, other: &ExtensionRangeOptions) -> bool
fn eq(&self, other: &ExtensionRangeOptions) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ExtensionRangeOptions) -> bool
fn ne(&self, other: &ExtensionRangeOptions) -> bool
This method tests for !=
.
sourceimpl ProtobufValue for ExtensionRangeOptions
impl ProtobufValue for ExtensionRangeOptions
type RuntimeType = RuntimeTypeMessage<ExtensionRangeOptions>
type RuntimeType = RuntimeTypeMessage<ExtensionRangeOptions>
Actual implementation of type properties.
impl StructuralPartialEq for ExtensionRangeOptions
Auto Trait Implementations
impl RefUnwindSafe for ExtensionRangeOptions
impl Send for ExtensionRangeOptions
impl Sync for ExtensionRangeOptions
impl Unpin for ExtensionRangeOptions
impl UnwindSafe for ExtensionRangeOptions
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)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more