Enum sourceview5::SmartHomeEndType
source · #[non_exhaustive]pub enum SmartHomeEndType {
Disabled,
Before,
After,
Always,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Disabled
smart-home-end disabled.
Before
move to the first/last non-whitespace character on the first press of the HOME/END keys and to the beginning/end of the line on the second press.
After
move to the beginning/end of the line on the first press of the HOME/END keys and to the first/last non-whitespace character on the second press.
Always
always move to the first/last non-whitespace character when the HOME/END keys are pressed.
Trait Implementations§
source§impl Clone for SmartHomeEndType
impl Clone for SmartHomeEndType
source§fn clone(&self) -> SmartHomeEndType
fn clone(&self) -> SmartHomeEndType
Returns a copy 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 SmartHomeEndType
impl Debug for SmartHomeEndType
source§impl From<SmartHomeEndType> for Value
impl From<SmartHomeEndType> for Value
source§fn from(v: SmartHomeEndType) -> Self
fn from(v: SmartHomeEndType) -> Self
Converts to this type from the input type.
source§impl<'a> FromValue<'a> for SmartHomeEndType
impl<'a> FromValue<'a> for SmartHomeEndType
§type Checker = GenericValueTypeChecker<SmartHomeEndType>
type Checker = GenericValueTypeChecker<SmartHomeEndType>
Value type checker.
source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a
Value
. Read moresource§impl HasParamSpec for SmartHomeEndType
impl HasParamSpec for SmartHomeEndType
type ParamSpec = ParamSpecEnum
§type SetValue = SmartHomeEndType
type SetValue = SmartHomeEndType
Preferred value to be used as setter for the associated ParamSpec.
type BuilderFn = fn(_: &str, _: SmartHomeEndType) -> ParamSpecEnumBuilder<'_, SmartHomeEndType>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for SmartHomeEndType
impl Hash for SmartHomeEndType
source§impl Ord for SmartHomeEndType
impl Ord for SmartHomeEndType
source§fn cmp(&self, other: &SmartHomeEndType) -> Ordering
fn cmp(&self, other: &SmartHomeEndType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for SmartHomeEndType
impl PartialEq for SmartHomeEndType
source§fn eq(&self, other: &SmartHomeEndType) -> bool
fn eq(&self, other: &SmartHomeEndType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for SmartHomeEndType
impl PartialOrd for SmartHomeEndType
source§fn partial_cmp(&self, other: &SmartHomeEndType) -> Option<Ordering>
fn partial_cmp(&self, other: &SmartHomeEndType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl StaticType for SmartHomeEndType
impl StaticType for SmartHomeEndType
source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.source§impl ToValue for SmartHomeEndType
impl ToValue for SmartHomeEndType
source§impl ValueType for SmartHomeEndType
impl ValueType for SmartHomeEndType
§type Type = SmartHomeEndType
type Type = SmartHomeEndType
Type to get the
Type
from. Read moreimpl Copy for SmartHomeEndType
impl Eq for SmartHomeEndType
impl StructuralPartialEq for SmartHomeEndType
Auto Trait Implementations§
impl Freeze for SmartHomeEndType
impl RefUnwindSafe for SmartHomeEndType
impl Send for SmartHomeEndType
impl Sync for SmartHomeEndType
impl Unpin for SmartHomeEndType
impl UnwindSafe for SmartHomeEndType
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
source§impl<T> PropertyGet for Twhere
T: HasParamSpec,
impl<T> PropertyGet for Twhere
T: HasParamSpec,
source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
source§fn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.
source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.