pub struct VirtualConsoleArgs {Show 13 fields
pub disable: bool,
pub keep_log_visible: bool,
pub show_logo: bool,
pub keyrepeat: bool,
pub rounded_corners: bool,
pub boot_animation: bool,
pub color_scheme: ColorScheme,
pub keymap: String,
pub display_rotation: DisplayRotation,
pub font_size: f32,
pub dpi: Vec<u32>,
pub scrollback_rows: u32,
pub buffer_count: usize,
}
Fields§
§disable: bool
§keep_log_visible: bool
§show_logo: bool
§keyrepeat: bool
§rounded_corners: bool
§boot_animation: bool
§color_scheme: ColorScheme
§keymap: String
§display_rotation: DisplayRotation
§font_size: f32
§dpi: Vec<u32>
§scrollback_rows: u32
§buffer_count: usize
Trait Implementations§
Source§impl Debug for VirtualConsoleArgs
impl Debug for VirtualConsoleArgs
Source§impl Default for VirtualConsoleArgs
impl Default for VirtualConsoleArgs
Source§fn default() -> VirtualConsoleArgs
fn default() -> VirtualConsoleArgs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VirtualConsoleArgs
impl RefUnwindSafe for VirtualConsoleArgs
impl Send for VirtualConsoleArgs
impl Sync for VirtualConsoleArgs
impl Unpin for VirtualConsoleArgs
impl UnwindSafe for VirtualConsoleArgs
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> IntoAny for T
impl<T> IntoAny for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more