pub enum WebKitScrollbarPseudoClass {
Horizontal,
Vertical,
Decrement,
Increment,
Start,
End,
DoubleButton,
SingleButton,
NoButton,
CornerPresent,
WindowInactive,
}
Expand description
A webkit scrollbar pseudo class.
Variants§
Horizontal
:horizontal
Vertical
:vertical
Decrement
:decrement
Increment
:increment
Start
:start
End
:end
DoubleButton
:double-button
SingleButton
:single-button
NoButton
:no-button
CornerPresent
:corner-present
WindowInactive
:window-inactive
Trait Implementations§
Source§impl Clone for WebKitScrollbarPseudoClass
impl Clone for WebKitScrollbarPseudoClass
Source§fn clone(&self) -> WebKitScrollbarPseudoClass
fn clone(&self) -> WebKitScrollbarPseudoClass
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<'de> Deserialize<'de> for WebKitScrollbarPseudoClass
impl<'de> Deserialize<'de> for WebKitScrollbarPseudoClass
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for WebKitScrollbarPseudoClass
impl Hash for WebKitScrollbarPseudoClass
Source§impl<'any> IntoOwned<'any> for WebKitScrollbarPseudoClass
impl<'any> IntoOwned<'any> for WebKitScrollbarPseudoClass
Source§type Owned = WebKitScrollbarPseudoClass
type Owned = WebKitScrollbarPseudoClass
A variant of
Self
with a new lifetime.Source§fn into_owned(self) -> Self
fn into_owned(self) -> Self
Make lifetime of
self
'static
.Source§impl JsonSchema for WebKitScrollbarPseudoClass
impl JsonSchema for WebKitScrollbarPseudoClass
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreimpl Eq for WebKitScrollbarPseudoClass
impl StructuralPartialEq for WebKitScrollbarPseudoClass
Auto Trait Implementations§
impl Freeze for WebKitScrollbarPseudoClass
impl RefUnwindSafe for WebKitScrollbarPseudoClass
impl Send for WebKitScrollbarPseudoClass
impl Sync for WebKitScrollbarPseudoClass
impl Unpin for WebKitScrollbarPseudoClass
impl UnwindSafe for WebKitScrollbarPseudoClass
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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 more