pub struct LineTagProperties {
pub window: Option<String>,
pub fore: Option<RgbColor>,
pub back: Option<RgbColor>,
pub gag: bool,
pub enable: bool,
}Expand description
Properties defined for a line tag.
Fields§
§window: Option<String>Redirect output to another window.
fore: Option<RgbColor>Override foreground color.
back: Option<RgbColor>Override background color.
gag: boolSuppress output in main window.
enable: boolUse this tag.
Trait Implementations§
Source§impl Clone for LineTagProperties
impl Clone for LineTagProperties
Source§fn clone(&self) -> LineTagProperties
fn clone(&self) -> LineTagProperties
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 LineTagProperties
impl Debug for LineTagProperties
Source§impl Default for LineTagProperties
impl Default for LineTagProperties
Source§fn default() -> LineTagProperties
fn default() -> LineTagProperties
Returns the “default value” for a type. Read more
Source§impl Display for LineTagProperties
impl Display for LineTagProperties
Source§impl PartialEq for LineTagProperties
impl PartialEq for LineTagProperties
impl Eq for LineTagProperties
impl StructuralPartialEq for LineTagProperties
Auto Trait Implementations§
impl Freeze for LineTagProperties
impl RefUnwindSafe for LineTagProperties
impl Send for LineTagProperties
impl Sync for LineTagProperties
impl Unpin for LineTagProperties
impl UnsafeUnpin for LineTagProperties
impl UnwindSafe for LineTagProperties
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