#[repr(C)]pub struct FRAME_MARGIN {
pub left: c_short,
pub right: c_short,
pub top: c_short,
pub bottom: c_short,
}Fields§
§left: c_short§right: c_short§top: c_short§bottom: c_shortTrait Implementations§
Source§impl Clone for FRAME_MARGIN
impl Clone for FRAME_MARGIN
Source§fn clone(&self) -> FRAME_MARGIN
fn clone(&self) -> FRAME_MARGIN
Returns a duplicate 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 moreSource§impl Debug for FRAME_MARGIN
impl Debug for FRAME_MARGIN
impl Copy for FRAME_MARGIN
Auto Trait Implementations§
impl Freeze for FRAME_MARGIN
impl RefUnwindSafe for FRAME_MARGIN
impl Send for FRAME_MARGIN
impl Sync for FRAME_MARGIN
impl Unpin for FRAME_MARGIN
impl UnsafeUnpin for FRAME_MARGIN
impl UnwindSafe for FRAME_MARGIN
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more