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