pub struct EM(/* private fields */);
Available on crate features
kernel
and user
only.Implementations§
Source§impl EM
impl EM
pub const SETCUEBANNER: Self
Available on crate feature
comctl
only.pub const GETCUEBANNER: Self
Available on crate feature
comctl
only.pub const SHOWBALLOONTIP: Self
Available on crate feature
comctl
only.pub const HIDEBALLOONTIP: Self
Available on crate feature
comctl
only.pub const SETHILITE: Self
Available on crate feature
comctl
only.pub const GETHILITE: Self
Available on crate feature
comctl
only.pub const NOSETFOCUS: Self
Available on crate feature
comctl
only.pub const TAKEFOCUS: Self
Available on crate feature
comctl
only.pub const SETEXTENDEDSTYLE: Self
Available on crate feature
comctl
only.pub const GETEXTENDEDSTYLE: Self
Available on crate feature
comctl
only.pub const SETENDOFLINE: Self
Available on crate feature
comctl
only.pub const GETENDOFLINE: Self
Available on crate feature
comctl
only.pub const ENABLESEARCHWEB: Self
Available on crate feature
comctl
only.pub const SEARCHWEB: Self
Available on crate feature
comctl
only.pub const SETCARETINDEX: Self
Available on crate feature
comctl
only.pub const GETCARETINDEX: Self
Available on crate feature
comctl
only.pub const GETZOOM: Self
Available on crate feature
comctl
only.pub const SETZOOM: Self
Available on crate feature
comctl
only.pub const FILELINEFROMCHAR: Self
Available on crate feature
comctl
only.pub const FILELINEINDEX: Self
Available on crate feature
comctl
only.pub const FILELINELENGTH: Self
Available on crate feature
comctl
only.pub const GETFILELINE: Self
Available on crate feature
comctl
only.pub const GETFILELINECOUNT: Self
Available on crate feature
comctl
only.Source§impl EM
impl EM
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u32
pub const unsafe fn as_mut(&mut self) -> &mut u32
Returns a mutable reference to the underlying raw value.
§Safety
Be sure the integer being set is meaningful for the actual type.
Sourcepub const unsafe fn from_raw(v: u32) -> Self
pub const unsafe fn from_raw(v: u32) -> Self
Constructs a new object by wrapping the given integer value.
§Safety
Be sure the given value is meaningful for the actual type.
Sourcepub const fn raw(&self) -> u32
pub const fn raw(&self) -> u32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Source§impl EM
impl EM
pub const GETSEL: Self
pub const SETSEL: Self
pub const GETRECT: Self
pub const SETRECT: Self
pub const SETRECTNP: Self
pub const SCROLL: Self
pub const LINESCROLL: Self
pub const SCROLLCARET: Self
pub const GETMODIFY: Self
pub const SETMODIFY: Self
pub const GETLINECOUNT: Self
pub const LINEINDEX: Self
pub const SETHANDLE: Self
pub const GETHANDLE: Self
pub const GETTHUMB: Self
pub const LINELENGTH: Self
pub const REPLACESEL: Self
pub const GETLINE: Self
pub const LIMITTEXT: Self
pub const CANUNDO: Self
pub const UNDO: Self
pub const FMTLINES: Self
pub const LINEFROMCHAR: Self
pub const SETTABSTOPS: Self
pub const SETPASSWORDCHAR: Self
pub const EMPTYUNDOBUFFER: Self
pub const GETFIRSTVISIBLELINE: Self
pub const SETREADONLY: Self
pub const SETWORDBREAKPROC: Self
pub const GETWORDBREAKPROC: Self
pub const GETPASSWORDCHAR: Self
pub const SETMARGINS: Self
pub const GETMARGINS: Self
pub const SETLIMITTEXT: Self
pub const GETLIMITTEXT: Self
pub const POSFROMCHAR: Self
pub const CHARFROMPOS: Self
pub const SETIMESTATUS: Self
pub const GETIMESTATUS: Self
pub const ENABLEFEATURE: Self
Trait Implementations§
Source§impl BitAndAssign for EM
impl BitAndAssign for EM
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for EM
impl BitOrAssign for EM
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for EM
impl BitXorAssign for EM
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for EM
impl Ord for EM
Source§impl PartialOrd for EM
impl PartialOrd for EM
impl Copy for EM
impl Eq for EM
impl StructuralPartialEq for EM
Auto Trait Implementations§
impl Freeze for EM
impl RefUnwindSafe for EM
impl Send for EM
impl Sync for EM
impl Unpin for EM
impl UnwindSafe for EM
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