Struct terminfo::capability::ExitAttributeMode
source · pub struct ExitAttributeMode<'a>(/* private fields */);
Implementations§
source§impl<'a> ExitAttributeMode<'a>
impl<'a> ExitAttributeMode<'a>
sourcepub fn expand(&self) -> Expansion<'_, ExitAttributeMode<'_>>
pub fn expand(&self) -> Expansion<'_, ExitAttributeMode<'_>>
Begin expanding the capability.
Examples found in repository?
examples/set_attributes.rs (line 14)
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
fn main() {
let info = Database::from_env().unwrap();
if let Some(set_attributes) = info.get::<cap::SetAttributes>() {
let clear = info.get::<cap::ExitAttributeMode>().unwrap();
set_attributes.expand().bold(true).underline(true).to(io::stdout()).unwrap();
println!("bold and underline");
clear.expand().to(io::stdout()).unwrap();
} else {
println!("The terminal does not support mass-setting attributes");
}
}
More examples
examples/simple.rs (line 22)
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
fn main() {
let info = Database::from_env().unwrap();
if let Some(cap::MaxColors(n)) = info.get::<cap::MaxColors>() {
println!("The terminal supports {} colors.", n);
} else {
println!("The terminal does not support colors, what year is this?");
}
if let Some(flash) = info.get::<cap::FlashScreen>() {
flash.expand().to(io::stdout()).unwrap();
} else {
println!("FLASH GORDON!");
}
info.get::<cap::SetAForeground>().unwrap().expand().color(2).to(io::stdout()).unwrap();
info.get::<cap::SetABackground>().unwrap().expand().color(4).to(io::stdout()).unwrap();
println!("SUP");
info.get::<cap::ExitAttributeMode>().unwrap().expand().to(io::stdout()).unwrap();
}
Trait Implementations§
source§impl<'a> AsRef<[u8]> for ExitAttributeMode<'a>
impl<'a> AsRef<[u8]> for ExitAttributeMode<'a>
source§impl<'a> Capability<'a> for ExitAttributeMode<'a>
impl<'a> Capability<'a> for ExitAttributeMode<'a>
source§impl<'a> Clone for ExitAttributeMode<'a>
impl<'a> Clone for ExitAttributeMode<'a>
source§fn clone(&self) -> ExitAttributeMode<'a>
fn clone(&self) -> ExitAttributeMode<'a>
Returns a copy 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<'a> Debug for ExitAttributeMode<'a>
impl<'a> Debug for ExitAttributeMode<'a>
source§impl<'a> PartialEq for ExitAttributeMode<'a>
impl<'a> PartialEq for ExitAttributeMode<'a>
source§fn eq(&self, other: &ExitAttributeMode<'a>) -> bool
fn eq(&self, other: &ExitAttributeMode<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Eq for ExitAttributeMode<'a>
impl<'a> StructuralPartialEq for ExitAttributeMode<'a>
Auto Trait Implementations§
impl<'a> Freeze for ExitAttributeMode<'a>
impl<'a> RefUnwindSafe for ExitAttributeMode<'a>
impl<'a> Send for ExitAttributeMode<'a>
impl<'a> Sync for ExitAttributeMode<'a>
impl<'a> Unpin for ExitAttributeMode<'a>
impl<'a> UnwindSafe for ExitAttributeMode<'a>
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