#[repr(C)]pub enum OverlayCorner {
TopLeft = 0,
TopRight = 1,
BottomLeft = 2,
BottomRight = 3,
}Expand description
Screen corner where the overlay is displayed.
Variants§
TopLeft = 0
Top-left corner of the screen.
TopRight = 1
Top-right corner of the screen.
BottomLeft = 2
Bottom-left corner of the screen.
BottomRight = 3
Bottom-right corner of the screen.
Trait Implementations§
Source§impl Clone for OverlayCorner
impl Clone for OverlayCorner
Source§fn clone(&self) -> OverlayCorner
fn clone(&self) -> OverlayCorner
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 OverlayCorner
impl Debug for OverlayCorner
Source§impl Default for OverlayCorner
impl Default for OverlayCorner
Source§fn default() -> OverlayCorner
fn default() -> OverlayCorner
Returns the “default value” for a type. Read more
Source§impl PartialEq for OverlayCorner
impl PartialEq for OverlayCorner
impl Copy for OverlayCorner
impl StructuralPartialEq for OverlayCorner
Auto Trait Implementations§
impl Freeze for OverlayCorner
impl RefUnwindSafe for OverlayCorner
impl Send for OverlayCorner
impl Sync for OverlayCorner
impl Unpin for OverlayCorner
impl UnsafeUnpin for OverlayCorner
impl UnwindSafe for OverlayCorner
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<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
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 moreSource§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().