pub enum OverlayPositionType {
OVERLAY_POSITION_TYPE_UNSPECIFIED = 0,
OVERLAY_POSITION_TYPE_CENTER = 1,
OVERLAY_POSITION_TYPE_TOP_LEFT = 2,
OVERLAY_POSITION_TYPE_TOP_CENTER = 3,
OVERLAY_POSITION_TYPE_TOP_RIGHT = 4,
OVERLAY_POSITION_TYPE_BOTTOM_LEFT = 5,
OVERLAY_POSITION_TYPE_BOTTOM_CENTER = 6,
OVERLAY_POSITION_TYPE_BOTTOM_RIGHT = 7,
OVERLAY_POSITION_TYPE_MANUAL = 8,
}Variants§
OVERLAY_POSITION_TYPE_UNSPECIFIED = 0
OVERLAY_POSITION_TYPE_CENTER = 1
OVERLAY_POSITION_TYPE_TOP_LEFT = 2
OVERLAY_POSITION_TYPE_TOP_CENTER = 3
OVERLAY_POSITION_TYPE_TOP_RIGHT = 4
OVERLAY_POSITION_TYPE_BOTTOM_LEFT = 5
OVERLAY_POSITION_TYPE_BOTTOM_CENTER = 6
OVERLAY_POSITION_TYPE_BOTTOM_RIGHT = 7
OVERLAY_POSITION_TYPE_MANUAL = 8
Trait Implementations§
Source§impl Clone for OverlayPositionType
impl Clone for OverlayPositionType
Source§fn clone(&self) -> OverlayPositionType
fn clone(&self) -> OverlayPositionType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OverlayPositionType
impl Debug for OverlayPositionType
Source§impl Default for OverlayPositionType
impl Default for OverlayPositionType
Source§impl Enum for OverlayPositionType
impl Enum for OverlayPositionType
Source§const NAME: &'static str = "OverlayPositionType"
const NAME: &'static str = "OverlayPositionType"
Enum name as specified in
.proto file. Read moreSource§const VALUES: &'static [OverlayPositionType]
const VALUES: &'static [OverlayPositionType]
All enum values for enum type.
Source§impl Hash for OverlayPositionType
impl Hash for OverlayPositionType
Source§impl PartialEq for OverlayPositionType
impl PartialEq for OverlayPositionType
Source§fn eq(&self, other: &OverlayPositionType) -> bool
fn eq(&self, other: &OverlayPositionType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for OverlayPositionType
impl Eq for OverlayPositionType
impl StructuralPartialEq for OverlayPositionType
Auto Trait Implementations§
impl Freeze for OverlayPositionType
impl RefUnwindSafe for OverlayPositionType
impl Send for OverlayPositionType
impl Sync for OverlayPositionType
impl Unpin for OverlayPositionType
impl UnsafeUnpin for OverlayPositionType
impl UnwindSafe for OverlayPositionType
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