Struct tailwind_css::TailwindOverscroll
source · pub struct TailwindOverscroll { /* private fields */ }
Expand description
Utilities for controlling how the browser behaves when reaching the boundary of a scrolling area.
Implementations§
source§impl TailwindOverscroll
impl TailwindOverscroll
sourcepub fn parse(pattern: &[&str], arbitrary: &TailwindArbitrary) -> Result<Self>
pub fn parse(pattern: &[&str], arbitrary: &TailwindArbitrary) -> Result<Self>
sourcepub fn check_valid(mode: &str) -> bool
pub fn check_valid(mode: &str) -> bool
https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior#syntax
Trait Implementations§
source§impl Clone for TailwindOverscroll
impl Clone for TailwindOverscroll
source§fn clone(&self) -> TailwindOverscroll
fn clone(&self) -> TailwindOverscroll
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 TailwindOverscroll
impl Debug for TailwindOverscroll
source§impl Display for TailwindOverscroll
impl Display for TailwindOverscroll
source§impl TailwindInstance for TailwindOverscroll
impl TailwindInstance for TailwindOverscroll
source§fn attributes(&self, _: &TailwindBuilder) -> CssAttributes
fn attributes(&self, _: &TailwindBuilder) -> CssAttributes
Attributes in css
source§fn inlineable(&self) -> bool
fn inlineable(&self) -> bool
used to deduplication and marking
source§fn selectors(&self, ctx: &TailwindBuilder) -> String
fn selectors(&self, ctx: &TailwindBuilder) -> String
Custom selector name
source§fn additional(&self, ctx: &TailwindBuilder) -> String
fn additional(&self, ctx: &TailwindBuilder) -> String
Additional css in bundle
Auto Trait Implementations§
impl RefUnwindSafe for TailwindOverscroll
impl Send for TailwindOverscroll
impl Sync for TailwindOverscroll
impl Unpin for TailwindOverscroll
impl UnwindSafe for TailwindOverscroll
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