pub enum DomainEvent {
SnapshotLoaded(DomainSnapshot),
FocusChanged {
client_id: String,
focus: ClientFocus,
},
AlertChanged {
window_id: String,
alerts: AlertState,
},
OutputChanged {
pane_id: String,
},
DirectoriesUpdated(Vec<DirectoryRecord>),
}Variants§
SnapshotLoaded(DomainSnapshot)
FocusChanged
AlertChanged
OutputChanged
DirectoriesUpdated(Vec<DirectoryRecord>)
Trait Implementations§
Source§impl Clone for DomainEvent
impl Clone for DomainEvent
Source§fn clone(&self) -> DomainEvent
fn clone(&self) -> DomainEvent
Returns a duplicate 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 DomainEvent
impl Debug for DomainEvent
Source§impl PartialEq for DomainEvent
impl PartialEq for DomainEvent
impl StructuralPartialEq for DomainEvent
Auto Trait Implementations§
impl Freeze for DomainEvent
impl RefUnwindSafe for DomainEvent
impl Send for DomainEvent
impl Sync for DomainEvent
impl Unpin for DomainEvent
impl UnsafeUnpin for DomainEvent
impl UnwindSafe for DomainEvent
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