pub struct ProtoAny {
pub type_url: String,
pub value: String,
pub unknown_fields: Box<UnknownFieldSet>,
pub value_decoded: Option<String>,
}Fields§
§type_url: String§value: String§unknown_fields: Box<UnknownFieldSet>§value_decoded: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ProtoAny
impl<'de> Deserialize<'de> for ProtoAny
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ProtoAny
Auto Trait Implementations§
impl Freeze for ProtoAny
impl RefUnwindSafe for ProtoAny
impl Send for ProtoAny
impl Sync for ProtoAny
impl Unpin for ProtoAny
impl UnsafeUnpin for ProtoAny
impl UnwindSafe for ProtoAny
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