Enum proto_pdk::HostLogInput
source · pub enum HostLogInput {
Message(String),
TargetedMessage {
message: String,
target: HostLogTarget,
},
Fields {
data: HashMap<String, Value>,
message: String,
},
}Expand description
Input passed to the host_log host function.
Variants§
Trait Implementations§
source§impl Clone for HostLogInput
impl Clone for HostLogInput
source§fn clone(&self) -> HostLogInput
fn clone(&self) -> HostLogInput
Returns a copy of the value. Read more
1.0.0 · 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 HostLogInput
impl Debug for HostLogInput
source§impl<'de> Deserialize<'de> for HostLogInput
impl<'de> Deserialize<'de> for HostLogInput
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<HostLogInput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<HostLogInput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<&str> for HostLogInput
impl From<&str> for HostLogInput
source§fn from(message: &str) -> HostLogInput
fn from(message: &str) -> HostLogInput
Converts to this type from the input type.
source§impl From<String> for HostLogInput
impl From<String> for HostLogInput
source§fn from(message: String) -> HostLogInput
fn from(message: String) -> HostLogInput
Converts to this type from the input type.
source§impl PartialEq for HostLogInput
impl PartialEq for HostLogInput
source§fn eq(&self, other: &HostLogInput) -> bool
fn eq(&self, other: &HostLogInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for HostLogInput
impl Serialize for HostLogInput
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for HostLogInput
impl StructuralEq for HostLogInput
impl StructuralPartialEq for HostLogInput
Auto Trait Implementations§
impl RefUnwindSafe for HostLogInput
impl Send for HostLogInput
impl Sync for HostLogInput
impl Unpin for HostLogInput
impl UnwindSafe for HostLogInput
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