Struct xmpp_parsers::pubsub::pubsub::Retract
source · pub struct Retract {
pub node: NodeName,
pub notify: Notify,
pub items: Vec<Item>,
}
Expand description
A request to retract some items from a node.
Fields§
§node: NodeName
The node affected by this request.
notify: Notify
Whether a retract request should notify subscribers or not.
items: Vec<Item>
The items affected by this request.
Trait Implementations§
source§impl PartialEq for Retract
impl PartialEq for Retract
impl StructuralPartialEq for Retract
Auto Trait Implementations§
impl RefUnwindSafe for Retract
impl Send for Retract
impl Sync for Retract
impl Unpin for Retract
impl UnwindSafe for Retract
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