[][src]Struct scintilla_sys::SCNotification

#[repr(C)]
pub struct SCNotification {
    pub nmhdr: Sci_NotifyHeader,
    pub position: Sci_Position,
    pub ch: c_int,
    pub modifiers: c_int,
    pub modificationType: c_int,
    pub text: *const c_char,
    pub length: Sci_Position,
    pub linesAdded: Sci_Position,
    pub message: c_int,
    pub wParam: uptr_t,
    pub lParam: sptr_t,
    pub line: Sci_Position,
    pub foldLevelNow: c_int,
    pub foldLevelPrev: c_int,
    pub margin: c_int,
    pub listType: c_int,
    pub x: c_int,
    pub y: c_int,
    pub token: c_int,
    pub annotationLinesAdded: Sci_Position,
    pub updated: c_int,
    pub listCompletionMethod: c_int,
}

Fields

nmhdr: Sci_NotifyHeaderposition: Sci_Positionch: c_intmodifiers: c_intmodificationType: c_inttext: *const c_charlength: Sci_PositionlinesAdded: Sci_Positionmessage: c_intwParam: uptr_tlParam: sptr_tline: Sci_PositionfoldLevelNow: c_intfoldLevelPrev: c_intmargin: c_intlistType: c_intx: c_inty: c_inttoken: c_intannotationLinesAdded: Sci_Positionupdated: c_intlistCompletionMethod: c_int

Trait Implementations

impl Clone for SCNotification[src]

impl Copy for SCNotification[src]

impl Debug for SCNotification[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.