pub struct RootTerminalsChangedAction {
pub terminals: Vec<TerminalInfo>,
}Expand description
Fired when the list of known terminals changes.
Full-replacement semantics: the terminals array replaces the previous
terminals entirely.
Fields§
§terminals: Vec<TerminalInfo>Updated terminal list (full replacement)
Trait Implementations§
Source§impl Clone for RootTerminalsChangedAction
impl Clone for RootTerminalsChangedAction
Source§fn clone(&self) -> RootTerminalsChangedAction
fn clone(&self) -> RootTerminalsChangedAction
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 RootTerminalsChangedAction
impl Debug for RootTerminalsChangedAction
Source§impl<'de> Deserialize<'de> for RootTerminalsChangedAction
impl<'de> Deserialize<'de> for RootTerminalsChangedAction
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 PartialEq for RootTerminalsChangedAction
impl PartialEq for RootTerminalsChangedAction
Source§fn eq(&self, other: &RootTerminalsChangedAction) -> bool
fn eq(&self, other: &RootTerminalsChangedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RootTerminalsChangedAction
Auto Trait Implementations§
impl Freeze for RootTerminalsChangedAction
impl RefUnwindSafe for RootTerminalsChangedAction
impl Send for RootTerminalsChangedAction
impl Sync for RootTerminalsChangedAction
impl Unpin for RootTerminalsChangedAction
impl UnsafeUnpin for RootTerminalsChangedAction
impl UnwindSafe for RootTerminalsChangedAction
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