pub enum NccspRect<'a, 'b> {
    Nccsp(&'b mut NCCALCSIZE_PARAMS<'a>),
    Rect(&'b mut RECT),
}Available on crate feature 
user only.Expand description
Variant parameter for:
Variants§
Nccsp(&'b mut NCCALCSIZE_PARAMS<'a>)
Mutable reference to NCCALCSIZE_PARAMS.
Rect(&'b mut RECT)
Mutable reference to RECT.
Auto Trait Implementations§
impl<'a, 'b> Freeze for NccspRect<'a, 'b>
impl<'a, 'b> RefUnwindSafe for NccspRect<'a, 'b>
impl<'a, 'b> !Send for NccspRect<'a, 'b>
impl<'a, 'b> !Sync for NccspRect<'a, 'b>
impl<'a, 'b> Unpin for NccspRect<'a, 'b>
impl<'a, 'b> !UnwindSafe for NccspRect<'a, 'b>
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