Struct FINDREPLACEA
#[repr(C)]pub struct FINDREPLACEA {
pub lStructSize: u32,
pub hwndOwner: HWND,
pub hInstance: HINSTANCE,
pub Flags: FINDREPLACE_FLAGS,
pub lpstrFindWhat: PSTR,
pub lpstrReplaceWith: PSTR,
pub wFindWhatLen: u16,
pub wReplaceWithLen: u16,
pub lCustData: LPARAM,
pub lpfnHook: LPFRHOOKPROC,
pub lpTemplateName: PCSTR,
}
Fields§
§lStructSize: u32
§hwndOwner: HWND
§hInstance: HINSTANCE
§Flags: FINDREPLACE_FLAGS
§lpstrFindWhat: PSTR
§lpstrReplaceWith: PSTR
§wFindWhatLen: u16
§wReplaceWithLen: u16
§lCustData: LPARAM
§lpfnHook: LPFRHOOKPROC
§lpTemplateName: PCSTR
Trait Implementations§
§impl Clone for FINDREPLACEA
impl Clone for FINDREPLACEA
§fn clone(&self) -> FINDREPLACEA
fn clone(&self) -> FINDREPLACEA
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 moreimpl Copy for FINDREPLACEA
Auto Trait Implementations§
impl Freeze for FINDREPLACEA
impl RefUnwindSafe for FINDREPLACEA
impl !Send for FINDREPLACEA
impl !Sync for FINDREPLACEA
impl Unpin for FINDREPLACEA
impl UnwindSafe for FINDREPLACEA
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