pub struct ScrollVerificationResult {
pub verified: bool,
pub in_viewport: bool,
pub attempts: u32,
}Expand description
Result of a scroll verification.
Fields§
§verified: boolWhether the scroll was verified as successful.
in_viewport: boolWhether the element is in the viewport.
attempts: u32Number of verification attempts.
Trait Implementations§
Source§impl Clone for ScrollVerificationResult
impl Clone for ScrollVerificationResult
Source§fn clone(&self) -> ScrollVerificationResult
fn clone(&self) -> ScrollVerificationResult
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 moreAuto Trait Implementations§
impl Freeze for ScrollVerificationResult
impl RefUnwindSafe for ScrollVerificationResult
impl Send for ScrollVerificationResult
impl Sync for ScrollVerificationResult
impl Unpin for ScrollVerificationResult
impl UnsafeUnpin for ScrollVerificationResult
impl UnwindSafe for ScrollVerificationResult
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