[][src]Struct winconsole::console::SelectionInfo

pub struct SelectionInfo {
    pub anchor: Vector2<u16>,
    pub empty: bool,
    pub mouse_down: bool,
    pub rect: Rect,
    pub selecting: bool,
}

Information about a console selection.

Fields

anchor: Vector2<u16>

The console selection anchor.

empty: bool

Is the selection empty?

mouse_down: bool

Is the mouse down?

rect: Rect

The selection rectangle.

selecting: bool

Is a selection occurring?

Trait Implementations

impl PartialEq<SelectionInfo> for SelectionInfo[src]

impl Clone for SelectionInfo[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for SelectionInfo[src]

fn default() -> Self[src]

Returns an empty SelectionInfo object.

impl Copy for SelectionInfo[src]

impl Debug for SelectionInfo[src]

impl Serialize for SelectionInfo[src]

impl<'de> Deserialize<'de> for SelectionInfo[src]

Auto Trait Implementations

impl Send for SelectionInfo

impl Sync for SelectionInfo

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]