#[non_exhaustive]pub enum ScrollLogicalPosition {
Start = 0,
Center = 1,
End = 2,
Nearest = 3,
}Expand description
The ScrollLogicalPosition enum.
This API requires the following crate features to be activated: ScrollLogicalPosition
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.
Implementations§
Source§impl ScrollLogicalPosition
impl ScrollLogicalPosition
Sourcepub fn from_str(s: &str) -> Option<ScrollLogicalPosition>
pub fn from_str(s: &str) -> Option<ScrollLogicalPosition>
Convert a string to this enum variant.
Sourcepub fn from_js_value(obj: &JsValue) -> Option<ScrollLogicalPosition>
pub fn from_js_value(obj: &JsValue) -> Option<ScrollLogicalPosition>
Convert a JsValue (if it’s a string) to this enum variant.
Trait Implementations§
Source§impl BinaryDecode for ScrollLogicalPosition
impl BinaryDecode for ScrollLogicalPosition
fn decode(decoder: &mut DecodedData<'_>) -> Result<Self, DecodeError>
Source§impl BinaryEncode for ScrollLogicalPosition
impl BinaryEncode for ScrollLogicalPosition
fn encode(self, encoder: &mut EncodedData)
Source§impl Clone for ScrollLogicalPosition
impl Clone for ScrollLogicalPosition
Source§fn clone(&self) -> ScrollLogicalPosition
fn clone(&self) -> ScrollLogicalPosition
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 ScrollLogicalPosition
impl Debug for ScrollLogicalPosition
Source§impl EncodeTypeDef for ScrollLogicalPosition
impl EncodeTypeDef for ScrollLogicalPosition
Source§fn encode_type_def(buf: &mut Vec<u8>)
fn encode_type_def(buf: &mut Vec<u8>)
Encode this type’s definition into the buffer.
For primitives, this is just the TypeTag byte.
For callbacks, this includes param count, param types, and return type.
Source§impl From<ScrollLogicalPosition> for JsValue
impl From<ScrollLogicalPosition> for JsValue
Source§fn from(val: ScrollLogicalPosition) -> Self
fn from(val: ScrollLogicalPosition) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ScrollLogicalPosition
impl PartialEq for ScrollLogicalPosition
impl Copy for ScrollLogicalPosition
impl Eq for ScrollLogicalPosition
impl StructuralPartialEq for ScrollLogicalPosition
Auto Trait Implementations§
impl Freeze for ScrollLogicalPosition
impl RefUnwindSafe for ScrollLogicalPosition
impl Send for ScrollLogicalPosition
impl Sync for ScrollLogicalPosition
impl Unpin for ScrollLogicalPosition
impl UnwindSafe for ScrollLogicalPosition
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