Struct cea708_types::tables::SetWindowAttributesArgs
source · pub struct SetWindowAttributesArgs {
pub justify: Justify,
pub print_direction: Direction,
pub scroll_direction: Direction,
pub wordwrap: bool,
pub display_effect: DisplayEffect,
pub effect_direction: Direction,
pub effect_speed: u8,
pub fill_color: Color,
pub fill_opacity: Opacity,
pub border_type: BorderType,
pub border_color: Color,
}Expand description
Arguments required for the Code::SetWindowAttributes command
Fields§
§justify: Justify§print_direction: Direction§scroll_direction: Direction§wordwrap: bool§display_effect: DisplayEffect§effect_direction: Direction§effect_speed: u8§fill_color: Color§fill_opacity: Opacity§border_type: BorderType§border_color: ColorImplementations§
Trait Implementations§
source§impl Clone for SetWindowAttributesArgs
impl Clone for SetWindowAttributesArgs
source§fn clone(&self) -> SetWindowAttributesArgs
fn clone(&self) -> SetWindowAttributesArgs
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 Debug for SetWindowAttributesArgs
impl Debug for SetWindowAttributesArgs
source§impl From<SetWindowAttributesArgs> for [u8; 4]
impl From<SetWindowAttributesArgs> for [u8; 4]
source§fn from(args: SetWindowAttributesArgs) -> Self
fn from(args: SetWindowAttributesArgs) -> Self
Converts to this type from the input type.
source§impl Ord for SetWindowAttributesArgs
impl Ord for SetWindowAttributesArgs
source§fn cmp(&self, other: &SetWindowAttributesArgs) -> Ordering
fn cmp(&self, other: &SetWindowAttributesArgs) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for SetWindowAttributesArgs
impl PartialEq for SetWindowAttributesArgs
source§fn eq(&self, other: &SetWindowAttributesArgs) -> bool
fn eq(&self, other: &SetWindowAttributesArgs) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for SetWindowAttributesArgs
impl PartialOrd for SetWindowAttributesArgs
source§fn partial_cmp(&self, other: &SetWindowAttributesArgs) -> Option<Ordering>
fn partial_cmp(&self, other: &SetWindowAttributesArgs) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for SetWindowAttributesArgs
impl Eq for SetWindowAttributesArgs
impl StructuralPartialEq for SetWindowAttributesArgs
Auto Trait Implementations§
impl Freeze for SetWindowAttributesArgs
impl RefUnwindSafe for SetWindowAttributesArgs
impl Send for SetWindowAttributesArgs
impl Sync for SetWindowAttributesArgs
impl Unpin for SetWindowAttributesArgs
impl UnwindSafe for SetWindowAttributesArgs
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