Struct xmpp_parsers::muc::user::Item
source · pub struct Item {
pub affiliation: Affiliation,
pub jid: Option<FullJid>,
pub nick: Option<String>,
pub role: Role,
pub actor: Option<Actor>,
pub continue_: Option<Continue>,
pub reason: Option<Reason>,
}
Expand description
An item representing a user in a room.
Fields§
§affiliation: Affiliation
The affiliation of this user with the room.
jid: Option<FullJid>
The real JID of this user, if you are allowed to see it.
nick: Option<String>
The current nickname of this user.
role: Role
The current role of this user.
actor: Option<Actor>
The actor affected by this item.
continue_: Option<Continue>
Whether this continues a one-to-one discussion.
reason: Option<Reason>
A reason for this item.
Implementations§
source§impl Item
impl Item
sourcepub fn new(affiliation: Affiliation, role: Role) -> Item
pub fn new(affiliation: Affiliation, role: Role) -> Item
Creates a new item with the given affiliation and role.
sourcepub fn with_actor(self, actor: Actor) -> Item
pub fn with_actor(self, actor: Actor) -> Item
Set an actor for this Item
sourcepub fn with_continue<S: Into<String>>(self, continue_: S) -> Item
pub fn with_continue<S: Into<String>>(self, continue_: S) -> Item
Set a continue value for this Item
sourcepub fn with_reason<S: Into<String>>(self, reason: S) -> Item
pub fn with_reason<S: Into<String>>(self, reason: S) -> Item
Set a reason for this Item
Trait Implementations§
source§impl FromXml for Item
impl FromXml for Item
§type Builder = FromEventsViaElement<Item>
type Builder = FromEventsViaElement<Item>
A builder type used to construct the element. Read more
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for Item
impl IntoXml for Item
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.source§impl PartialEq for Item
impl PartialEq for Item
impl StructuralPartialEq for Item
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
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