Enum xmpp_parsers::pubsub::access_model::AccessModel
source · pub enum AccessModel {
Open,
Presence,
Roster,
Authorize,
Whitelist,
}
Expand description
Access model options according to XEP-0060 table 6.
Variants§
Open
Any entity may subscribe to the node.
Presence
Any entity with a subscription of type “from” or “both” may subscribe to the node and retrieve items from the node
Roster
Any entity in the specified roster group(s) may subscribe to the node and retrieve items from the node
Authorize
Node owner must approve subscription requests.
Whitelist
Only whitelisted entities may subscribes.
Trait Implementations§
source§impl FromStr for AccessModel
impl FromStr for AccessModel
Auto Trait Implementations§
impl RefUnwindSafe for AccessModel
impl Send for AccessModel
impl Sync for AccessModel
impl Unpin for AccessModel
impl UnwindSafe for AccessModel
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