Struct xmpp_parsers::muc::user::Item
source · pub struct Item { /* private fields */ }
Expand description
An item representing a user in a room.
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 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