[−][src]Struct protobuf::well_known_types::Any
Fields
type_url: String
value: Vec<u8>
unknown_fields: UnknownFields
cached_size: CachedSize
Implementations
impl Any
[src]
pub fn new() -> Any
[src]
pub fn get_type_url(&self) -> &str
[src]
pub fn clear_type_url(&mut self)
[src]
pub fn set_type_url(&mut self, v: String)
[src]
pub fn mut_type_url(&mut self) -> &mut String
[src]
pub fn take_type_url(&mut self) -> String
[src]
pub fn get_value(&self) -> &[u8]
[src]
pub fn clear_value(&mut self)
[src]
pub fn set_value(&mut self, v: Vec<u8>)
[src]
pub fn mut_value(&mut self) -> &mut Vec<u8>
[src]
pub fn take_value(&mut self) -> Vec<u8>
[src]
impl Any
[src]
pub fn pack<M: Message>(message: &M) -> ProtobufResult<Any>
[src]
Pack any message into well_known_types::Any
value.
Examples
use protobuf::well_known_types::Any; let message: &MyMessage = message; let any = Any::pack(message)?; assert!(any.is::<MyMessage>());
pub fn pack_dyn(message: &dyn Message) -> ProtobufResult<Any>
[src]
Pack any message into well_known_types::Any
value.
Examples
use protobuf::Message; use protobuf::well_known_types::Any; let message: &dyn Message = message; let any = Any::pack_dyn(message)?; assert!(any.is_dyn(message.descriptor()));
pub fn is<M: Message>(&self) -> bool
[src]
Check if Any
contains a message of given type.
pub fn is_dyn(&self, descriptor: &MessageDescriptor) -> bool
[src]
Check if Any
contains a message of given type.
pub fn unpack<M: Message>(&self) -> ProtobufResult<Option<M>>
[src]
pub fn unpack_dyn(
&self,
descriptor: &MessageDescriptor
) -> ProtobufResult<Option<Box<dyn Message>>>
[src]
&self,
descriptor: &MessageDescriptor
) -> ProtobufResult<Option<Box<dyn Message>>>
Trait Implementations
impl Clear for Any
[src]
impl Clone for Any
[src]
impl Debug for Any
[src]
impl Default for Any
[src]
impl<'a> Default for &'a Any
[src]
impl Message for Any
[src]
fn is_initialized(&self) -> bool
[src]
fn merge_from(&mut self, is: &mut CodedInputStream) -> ProtobufResult<()>
[src]
fn compute_size(&self) -> u32
[src]
fn write_to_with_cached_sizes(
&self,
os: &mut CodedOutputStream
) -> ProtobufResult<()>
[src]
&self,
os: &mut CodedOutputStream
) -> ProtobufResult<()>
fn get_cached_size(&self) -> u32
[src]
fn get_unknown_fields(&self) -> &UnknownFields
[src]
fn mut_unknown_fields(&mut self) -> &mut UnknownFields
[src]
fn as_any(&self) -> &dyn Any
[src]
fn as_any_mut(&mut self) -> &mut dyn Any
[src]
fn into_any(self: Box<Self>) -> Box<dyn Any>
[src]
fn descriptor(&self) -> &'static MessageDescriptor
[src]
fn new() -> Any
[src]
fn descriptor_static() -> &'static MessageDescriptor
[src]
fn default_instance() -> &'static Any
[src]
fn write_to(&self, os: &mut CodedOutputStream) -> ProtobufResult<()>
[src]
fn write_length_delimited_to(
&self,
os: &mut CodedOutputStream
) -> ProtobufResult<()>
[src]
&self,
os: &mut CodedOutputStream
) -> ProtobufResult<()>
fn write_length_delimited_to_vec(&self, vec: &mut Vec<u8>) -> ProtobufResult<()>
[src]
fn merge_from_bytes(&mut self, bytes: &[u8]) -> ProtobufResult<()>
[src]
fn check_initialized(&self) -> ProtobufResult<()>
[src]
fn write_to_writer(&self, w: &mut dyn Write) -> ProtobufResult<()>
[src]
fn write_to_vec(&self, v: &mut Vec<u8>) -> ProtobufResult<()>
[src]
fn write_to_bytes(&self) -> ProtobufResult<Vec<u8>>
[src]
fn write_length_delimited_to_writer(
&self,
w: &mut dyn Write
) -> ProtobufResult<()>
[src]
&self,
w: &mut dyn Write
) -> ProtobufResult<()>
fn write_length_delimited_to_bytes(&self) -> ProtobufResult<Vec<u8>>
[src]
fn type_id(&self) -> TypeId
[src]
impl PartialEq<Any> for Any
[src]
impl ProtobufValue for Any
[src]
fn as_ref(&self) -> ReflectValueRef
[src]
fn as_any(&self) -> &dyn Any
[src]
fn is_non_zero(&self) -> bool
[src]
fn as_ref_copy(&self) -> ReflectValueRef<'static>
[src]
impl StructuralPartialEq for Any
[src]
Auto Trait Implementations
impl RefUnwindSafe for Any
impl Send for Any
impl Sync for Any
impl Unpin for Any
impl UnwindSafe for Any
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,