pub struct DataTag {
pub name: String,
pub value: String,
}Expand description
A tag = name + value pair (comparable to crate::Property,
but at application-data level, not at participant-config level).
Fields§
§name: StringTag name.
value: StringTag value.
Trait Implementations§
impl Eq for DataTag
impl StructuralPartialEq for DataTag
Auto Trait Implementations§
impl Freeze for DataTag
impl RefUnwindSafe for DataTag
impl Send for DataTag
impl Sync for DataTag
impl Unpin for DataTag
impl UnsafeUnpin for DataTag
impl UnwindSafe for DataTag
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