Struct protobuf::descriptor::ServiceOptions
source · [−]pub struct ServiceOptions {
pub deprecated: Option<bool>,
pub uninterpreted_option: Vec<UninterpretedOption>,
pub special_fields: SpecialFields,
}
Fields
deprecated: Option<bool>
Is this service deprecated? Depending on the target platform, this can emit Deprecated annotations for the service, or it will be completely ignored; in the very least, this is a formalization for deprecating services.
uninterpreted_option: Vec<UninterpretedOption>
The parser stores options it doesn’t recognize here. See above.
special_fields: SpecialFields
Implementations
sourceimpl ServiceOptions
impl ServiceOptions
pub fn new() -> ServiceOptions
pub fn deprecated(&self) -> bool
pub fn clear_deprecated(&mut self)
pub fn has_deprecated(&self) -> bool
pub fn set_deprecated(&mut self, v: bool)
Trait Implementations
sourceimpl Clone for ServiceOptions
impl Clone for ServiceOptions
sourcefn clone(&self) -> ServiceOptions
fn clone(&self) -> ServiceOptions
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 ServiceOptions
impl Debug for ServiceOptions
sourceimpl Default for ServiceOptions
impl Default for ServiceOptions
sourcefn default() -> ServiceOptions
fn default() -> ServiceOptions
Returns the “default value” for a type. Read more
sourceimpl<'a> Default for &'a ServiceOptions
impl<'a> Default for &'a ServiceOptions
sourcefn default() -> &'a ServiceOptions
fn default() -> &'a ServiceOptions
Returns the “default value” for a type. Read more
sourceimpl Display for ServiceOptions
impl Display for ServiceOptions
sourceimpl Message for ServiceOptions
impl Message for ServiceOptions
sourceconst NAME: &'static str = "ServiceOptions"
const NAME: &'static str = "ServiceOptions"
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() -> ServiceOptions
fn new() -> ServiceOptions
Create an empty message object. Read more
sourcefn default_instance() -> &'static ServiceOptions
fn default_instance() -> &'static ServiceOptions
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 ServiceOptions
impl MessageFull for ServiceOptions
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<ServiceOptions> for ServiceOptions
impl PartialEq<ServiceOptions> for ServiceOptions
sourcefn eq(&self, other: &ServiceOptions) -> bool
fn eq(&self, other: &ServiceOptions) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ServiceOptions) -> bool
fn ne(&self, other: &ServiceOptions) -> bool
This method tests for !=
.
sourceimpl ProtobufValue for ServiceOptions
impl ProtobufValue for ServiceOptions
type RuntimeType = RuntimeTypeMessage<ServiceOptions>
type RuntimeType = RuntimeTypeMessage<ServiceOptions>
Actual implementation of type properties.
impl StructuralPartialEq for ServiceOptions
Auto Trait Implementations
impl RefUnwindSafe for ServiceOptions
impl Send for ServiceOptions
impl Sync for ServiceOptions
impl Unpin for ServiceOptions
impl UnwindSafe for ServiceOptions
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