#[repr(i64)]pub enum NSTitlebarSeparatorStyle {
Automatic = 0,
None = 1,
Line = 2,
Shadow = 3,
}Expand description
Styles that determine the type of separator displayed between the title bar and content of a window.
Variants§
Automatic = 0
A style indicating that the system determines the type of separator.
None = 1
A style indicating that there’s no title bar separator.
Line = 2
A style indicating that there’s no title bar separator.
Shadow = 3
A style indicating that the title bar separator is a shadow.
Trait Implementations§
Source§impl Clone for NSTitlebarSeparatorStyle
impl Clone for NSTitlebarSeparatorStyle
Source§fn clone(&self) -> NSTitlebarSeparatorStyle
fn clone(&self) -> NSTitlebarSeparatorStyle
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 NSTitlebarSeparatorStyle
impl Debug for NSTitlebarSeparatorStyle
Source§impl PartialEq for NSTitlebarSeparatorStyle
impl PartialEq for NSTitlebarSeparatorStyle
impl Copy for NSTitlebarSeparatorStyle
impl Eq for NSTitlebarSeparatorStyle
impl StructuralPartialEq for NSTitlebarSeparatorStyle
Auto Trait Implementations§
impl Freeze for NSTitlebarSeparatorStyle
impl RefUnwindSafe for NSTitlebarSeparatorStyle
impl Send for NSTitlebarSeparatorStyle
impl Sync for NSTitlebarSeparatorStyle
impl Unpin for NSTitlebarSeparatorStyle
impl UnwindSafe for NSTitlebarSeparatorStyle
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