pub struct FromProtobufMessagesWarnings {
pub unknown_fields: Vec<ProtobufMessage>,
pub missing_fields: Vec<(u8, &'static str)>,
pub sub_warnings: Vec<(&'static str, FromProtobufMessagesWarnings)>,
pub repeated_fields: Vec<u8>,
}
Fields§
§unknown_fields: Vec<ProtobufMessage>
§missing_fields: Vec<(u8, &'static str)>
§sub_warnings: Vec<(&'static str, FromProtobufMessagesWarnings)>
§repeated_fields: Vec<u8>
Implementations§
Source§impl FromProtobufMessagesWarnings
impl FromProtobufMessagesWarnings
pub fn has_warnings(&self) -> bool
Trait Implementations§
Source§impl Clone for FromProtobufMessagesWarnings
impl Clone for FromProtobufMessagesWarnings
Source§fn clone(&self) -> FromProtobufMessagesWarnings
fn clone(&self) -> FromProtobufMessagesWarnings
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for FromProtobufMessagesWarnings
impl RefUnwindSafe for FromProtobufMessagesWarnings
impl Send for FromProtobufMessagesWarnings
impl Sync for FromProtobufMessagesWarnings
impl Unpin for FromProtobufMessagesWarnings
impl UnwindSafe for FromProtobufMessagesWarnings
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