Struct terminfo::capability::SetABackground
source · pub struct SetABackground<'a>(/* private fields */);
Implementations§
source§impl<'a> SetABackground<'a>
impl<'a> SetABackground<'a>
sourcepub fn expand(&self) -> Expansion<'_, SetABackground<'_>>
pub fn expand(&self) -> Expansion<'_, SetABackground<'_>>
Begin expanding the capability.
Examples found in repository?
examples/simple.rs (line 20)
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 SetABackground<'a>
impl<'a> AsRef<[u8]> for SetABackground<'a>
source§impl<'a> Capability<'a> for SetABackground<'a>
impl<'a> Capability<'a> for SetABackground<'a>
source§impl<'a> Clone for SetABackground<'a>
impl<'a> Clone for SetABackground<'a>
source§fn clone(&self) -> SetABackground<'a>
fn clone(&self) -> SetABackground<'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 SetABackground<'a>
impl<'a> Debug for SetABackground<'a>
source§impl<'a> PartialEq for SetABackground<'a>
impl<'a> PartialEq for SetABackground<'a>
source§fn eq(&self, other: &SetABackground<'a>) -> bool
fn eq(&self, other: &SetABackground<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Eq for SetABackground<'a>
impl<'a> StructuralPartialEq for SetABackground<'a>
Auto Trait Implementations§
impl<'a> Freeze for SetABackground<'a>
impl<'a> RefUnwindSafe for SetABackground<'a>
impl<'a> Send for SetABackground<'a>
impl<'a> Sync for SetABackground<'a>
impl<'a> Unpin for SetABackground<'a>
impl<'a> UnwindSafe for SetABackground<'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