pub enum DomainEventType {
DomainCreated,
DomainUpdated,
DomainDeleted,
}Variants§
Trait Implementations§
Source§impl Clone for DomainEventType
impl Clone for DomainEventType
Source§fn clone(&self) -> DomainEventType
fn clone(&self) -> DomainEventType
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 moreimpl Copy for DomainEventType
Source§impl Debug for DomainEventType
impl Debug for DomainEventType
Source§impl<'de> Deserialize<'de> for DomainEventType
impl<'de> Deserialize<'de> for DomainEventType
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
Source§impl From<DomainEventType> for EventType
impl From<DomainEventType> for EventType
Source§fn from(value: DomainEventType) -> Self
fn from(value: DomainEventType) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DomainEventType
impl RefUnwindSafe for DomainEventType
impl Send for DomainEventType
impl Sync for DomainEventType
impl Unpin for DomainEventType
impl UnsafeUnpin for DomainEventType
impl UnwindSafe for DomainEventType
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