pub struct EventClassification {
pub domain: String,
pub bounded_context: String,
pub event_type: EventType,
pub tags: Vec<String>,
}Fields§
§domain: String§bounded_context: String§event_type: EventTypeTrait Implementations§
Source§impl Clone for EventClassification
impl Clone for EventClassification
Source§fn clone(&self) -> EventClassification
fn clone(&self) -> EventClassification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EventClassification
impl Debug for EventClassification
Source§impl<'de> Deserialize<'de> for EventClassification
impl<'de> Deserialize<'de> for EventClassification
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 Eq for EventClassification
Source§impl PartialEq for EventClassification
impl PartialEq for EventClassification
Source§impl Serialize for EventClassification
impl Serialize for EventClassification
impl StructuralPartialEq for EventClassification
Auto Trait Implementations§
impl Freeze for EventClassification
impl RefUnwindSafe for EventClassification
impl Send for EventClassification
impl Sync for EventClassification
impl Unpin for EventClassification
impl UnsafeUnpin for EventClassification
impl UnwindSafe for EventClassification
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