Enum xmpp_parsers::pubsub::pubsub::Notify
source · pub enum Notify {
True,
False,
}
Expand description
Whether a retract request should notify subscribers or not.
Variants§
True
True value, represented by either ‘true’ or ‘1’.
False
False value, represented by either ‘false’ or ‘0’.
Trait Implementations§
source§impl IntoAttributeValue for Notify
impl IntoAttributeValue for Notify
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl PartialEq for Notify
impl PartialEq for Notify
impl StructuralPartialEq for Notify
Auto Trait Implementations§
impl RefUnwindSafe for Notify
impl Send for Notify
impl Sync for Notify
impl Unpin for Notify
impl UnwindSafe for Notify
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