pub struct TerminalUnclassifiedPart {
pub value: String,
}Expand description
Unstructured terminal output — content before, between, or after commands, or from terminals that do not support command detection.
Fields§
§value: StringAccumulated VT output. Appended to by terminal/data when no command is executing.
Trait Implementations§
Source§impl Clone for TerminalUnclassifiedPart
impl Clone for TerminalUnclassifiedPart
Source§fn clone(&self) -> TerminalUnclassifiedPart
fn clone(&self) -> TerminalUnclassifiedPart
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 TerminalUnclassifiedPart
impl Debug for TerminalUnclassifiedPart
Source§impl<'de> Deserialize<'de> for TerminalUnclassifiedPart
impl<'de> Deserialize<'de> for TerminalUnclassifiedPart
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 TerminalUnclassifiedPart
impl PartialEq for TerminalUnclassifiedPart
Source§fn eq(&self, other: &TerminalUnclassifiedPart) -> bool
fn eq(&self, other: &TerminalUnclassifiedPart) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TerminalUnclassifiedPart
impl Serialize for TerminalUnclassifiedPart
impl StructuralPartialEq for TerminalUnclassifiedPart
Auto Trait Implementations§
impl Freeze for TerminalUnclassifiedPart
impl RefUnwindSafe for TerminalUnclassifiedPart
impl Send for TerminalUnclassifiedPart
impl Sync for TerminalUnclassifiedPart
impl Unpin for TerminalUnclassifiedPart
impl UnsafeUnpin for TerminalUnclassifiedPart
impl UnwindSafe for TerminalUnclassifiedPart
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