pub struct WorkspaceEventDto {
pub kind: WorkspaceEventKind,
pub generation: Option<WorkspaceGeneration>,
pub stale_summary: Option<String>,
}Expand description
A workspace change pushed to attached clients over a daemon subscription.
Fields§
§kind: WorkspaceEventKind§generation: Option<WorkspaceGeneration>§stale_summary: Option<String>Trait Implementations§
Source§impl Clone for WorkspaceEventDto
impl Clone for WorkspaceEventDto
Source§fn clone(&self) -> WorkspaceEventDto
fn clone(&self) -> WorkspaceEventDto
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 WorkspaceEventDto
impl Debug for WorkspaceEventDto
Source§impl<'de> Deserialize<'de> for WorkspaceEventDto
impl<'de> Deserialize<'de> for WorkspaceEventDto
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 WorkspaceEventDto
Source§impl PartialEq for WorkspaceEventDto
impl PartialEq for WorkspaceEventDto
Source§impl Serialize for WorkspaceEventDto
impl Serialize for WorkspaceEventDto
impl StructuralPartialEq for WorkspaceEventDto
Auto Trait Implementations§
impl Freeze for WorkspaceEventDto
impl RefUnwindSafe for WorkspaceEventDto
impl Send for WorkspaceEventDto
impl Sync for WorkspaceEventDto
impl Unpin for WorkspaceEventDto
impl UnsafeUnpin for WorkspaceEventDto
impl UnwindSafe for WorkspaceEventDto
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