Struct prost_reflect::OneofDescriptor
source · [−]pub struct OneofDescriptor { /* private fields */ }Expand description
A oneof field in a protobuf message.
Implementations
sourceimpl OneofDescriptor
impl OneofDescriptor
sourcepub fn parent_file(&self) -> &FileDescriptor
pub fn parent_file(&self) -> &FileDescriptor
Gets a reference to the FileDescriptor this oneof is defined in.
sourcepub fn parent_message(&self) -> &MessageDescriptor
pub fn parent_message(&self) -> &MessageDescriptor
Gets a reference to the MessageDescriptor this oneof is defined in.
sourcepub fn full_name(&self) -> &str
pub fn full_name(&self) -> &str
Gets the full name of the oneof, e.g. my.package.MyMessage.my_oneof.
sourcepub fn oneof_descriptor_proto(&self) -> &OneofDescriptorProto
pub fn oneof_descriptor_proto(&self) -> &OneofDescriptorProto
Gets a reference to the raw OneofDescriptorProto wrapped by this OneofDescriptor.
sourcepub fn fields(&self) -> impl ExactSizeIterator<Item = FieldDescriptor> + '_
pub fn fields(&self) -> impl ExactSizeIterator<Item = FieldDescriptor> + '_
Gets an iterator yielding a FieldDescriptor for each field of the parent message this oneof contains.
Trait Implementations
sourceimpl Clone for OneofDescriptor
impl Clone for OneofDescriptor
sourcefn clone(&self) -> OneofDescriptor
fn clone(&self) -> OneofDescriptor
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 OneofDescriptor
impl Debug for OneofDescriptor
sourceimpl PartialEq<OneofDescriptor> for OneofDescriptor
impl PartialEq<OneofDescriptor> for OneofDescriptor
sourcefn eq(&self, other: &OneofDescriptor) -> bool
fn eq(&self, other: &OneofDescriptor) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &OneofDescriptor) -> bool
fn ne(&self, other: &OneofDescriptor) -> bool
This method tests for !=.
impl Eq for OneofDescriptor
impl StructuralEq for OneofDescriptor
impl StructuralPartialEq for OneofDescriptor
Auto Trait Implementations
impl RefUnwindSafe for OneofDescriptor
impl Send for OneofDescriptor
impl Sync for OneofDescriptor
impl Unpin for OneofDescriptor
impl UnwindSafe for OneofDescriptor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more