#[repr(i32)]pub enum WhiteSpaceView {
Invisible = 0,
VisibleAlways = 1,
VisibleAfterIndent = 2,
VisibleOnlyInIndent = 3,
}Expand description
Whitespace visibility modes for StyledTextCtrl
Variants§
Trait Implementations§
Source§impl Clone for WhiteSpaceView
impl Clone for WhiteSpaceView
Source§fn clone(&self) -> WhiteSpaceView
fn clone(&self) -> WhiteSpaceView
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 moreimpl Copy for WhiteSpaceView
Source§impl Debug for WhiteSpaceView
impl Debug for WhiteSpaceView
impl Eq for WhiteSpaceView
Source§impl From<WhiteSpaceView> for i32
impl From<WhiteSpaceView> for i32
Source§fn from(val: WhiteSpaceView) -> Self
fn from(val: WhiteSpaceView) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WhiteSpaceView
impl PartialEq for WhiteSpaceView
Source§fn eq(&self, other: &WhiteSpaceView) -> bool
fn eq(&self, other: &WhiteSpaceView) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WhiteSpaceView
Auto Trait Implementations§
impl Freeze for WhiteSpaceView
impl RefUnwindSafe for WhiteSpaceView
impl Send for WhiteSpaceView
impl Sync for WhiteSpaceView
impl Unpin for WhiteSpaceView
impl UnsafeUnpin for WhiteSpaceView
impl UnwindSafe for WhiteSpaceView
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