pub struct ChildNodeCountUpdatedParams {
pub node_id: Box<NodeId>,
pub child_node_count: i64,
}Expand description
Fired when Container’s child node count has changed.
childNodeCountUpdated
Fields§
§node_id: Box<NodeId>Id of the node that has changed.
child_node_count: i64New node count.
Trait Implementations§
Source§impl Clone for ChildNodeCountUpdatedParams
impl Clone for ChildNodeCountUpdatedParams
Source§fn clone(&self) -> ChildNodeCountUpdatedParams
fn clone(&self) -> ChildNodeCountUpdatedParams
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 ChildNodeCountUpdatedParams
impl Debug for ChildNodeCountUpdatedParams
Source§impl<'de> Deserialize<'de> for ChildNodeCountUpdatedParams
impl<'de> Deserialize<'de> for ChildNodeCountUpdatedParams
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 ChildNodeCountUpdatedParams
Auto Trait Implementations§
impl Freeze for ChildNodeCountUpdatedParams
impl RefUnwindSafe for ChildNodeCountUpdatedParams
impl Send for ChildNodeCountUpdatedParams
impl Sync for ChildNodeCountUpdatedParams
impl Unpin for ChildNodeCountUpdatedParams
impl UnsafeUnpin for ChildNodeCountUpdatedParams
impl UnwindSafe for ChildNodeCountUpdatedParams
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