pub enum ProtobufTarget {
Messages,
Services,
All,
}Expand description
Target specification for Protobuf code generation
Variants§
Messages
Generate only message definitions
Services
Generate only service definitions
All
Generate all code (messages, services, utilities)
Trait Implementations§
Source§impl Clone for ProtobufTarget
impl Clone for ProtobufTarget
Source§fn clone(&self) -> ProtobufTarget
fn clone(&self) -> ProtobufTarget
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProtobufTarget
impl Debug for ProtobufTarget
Source§impl PartialEq for ProtobufTarget
impl PartialEq for ProtobufTarget
Source§fn eq(&self, other: &ProtobufTarget) -> bool
fn eq(&self, other: &ProtobufTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ProtobufTarget
impl Eq for ProtobufTarget
impl StructuralPartialEq for ProtobufTarget
Auto Trait Implementations§
impl Freeze for ProtobufTarget
impl RefUnwindSafe for ProtobufTarget
impl Send for ProtobufTarget
impl Sync for ProtobufTarget
impl Unpin for ProtobufTarget
impl UnsafeUnpin for ProtobufTarget
impl UnwindSafe for ProtobufTarget
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.