pub struct Retract {
pub node: NodeName,
pub notify: bool,
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: bool
Whether a retract request should notify subscribers or not.
items: Vec<Item>
The items affected by this request.
Trait Implementations§
Source§impl FromXml for Retract
impl FromXml for Retract
Source§type Builder = RetractFromXmlBuilder
type Builder = RetractFromXmlBuilder
A builder type used to construct the element. Read more
Source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
impl StructuralPartialEq for Retract
Auto Trait Implementations§
impl Freeze for Retract
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