pub struct ScrollableFlagUpdatedParams {
pub node_id: Box<NodeId>,
pub is_scrollable: bool,
}Expand description
Fired when a node’s scrollability state changes. scrollableFlagUpdated
Fields§
§node_id: Box<NodeId>The id of the node.
is_scrollable: boolIf the node is scrollable.
Trait Implementations§
Source§impl Clone for ScrollableFlagUpdatedParams
impl Clone for ScrollableFlagUpdatedParams
Source§fn clone(&self) -> ScrollableFlagUpdatedParams
fn clone(&self) -> ScrollableFlagUpdatedParams
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 ScrollableFlagUpdatedParams
impl Debug for ScrollableFlagUpdatedParams
Source§impl<'de> Deserialize<'de> for ScrollableFlagUpdatedParams
impl<'de> Deserialize<'de> for ScrollableFlagUpdatedParams
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
impl StructuralPartialEq for ScrollableFlagUpdatedParams
Auto Trait Implementations§
impl Freeze for ScrollableFlagUpdatedParams
impl RefUnwindSafe for ScrollableFlagUpdatedParams
impl Send for ScrollableFlagUpdatedParams
impl Sync for ScrollableFlagUpdatedParams
impl Unpin for ScrollableFlagUpdatedParams
impl UnsafeUnpin for ScrollableFlagUpdatedParams
impl UnwindSafe for ScrollableFlagUpdatedParams
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