pub struct Prop<'a> {
pub key: &'static str,
pub value: PropValue<'a>,
}Expand description
One key/value pair on an event. Keys are always &'static str.
Fields§
§key: &'static str§value: PropValue<'a>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Prop<'a>
impl<'a> RefUnwindSafe for Prop<'a>
impl<'a> Send for Prop<'a>
impl<'a> Sync for Prop<'a>
impl<'a> Unpin for Prop<'a>
impl<'a> UnsafeUnpin for Prop<'a>
impl<'a> UnwindSafe for Prop<'a>
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