pub enum DefaultPrefs {
Always,
Never,
Roster,
}
Expand description
Notes the default archiving preference for the user.
Variants§
Always
The default is to always log messages in the archive.
Never
The default is to never log messages in the archive.
Roster
The default is to log messages in the archive only for contacts present in the user’s roster.
Trait Implementations§
source§impl AsXmlText for DefaultPrefs
impl AsXmlText for DefaultPrefs
source§impl Clone for DefaultPrefs
impl Clone for DefaultPrefs
source§fn clone(&self) -> DefaultPrefs
fn clone(&self) -> DefaultPrefs
Returns a copy of the value. Read more
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DefaultPrefs
impl Debug for DefaultPrefs
source§impl Display for DefaultPrefs
impl Display for DefaultPrefs
source§impl FromStr for DefaultPrefs
impl FromStr for DefaultPrefs
source§impl FromXmlText for DefaultPrefs
impl FromXmlText for DefaultPrefs
source§fn from_xml_text(s: String) -> Result<DefaultPrefs, Error>
fn from_xml_text(s: String) -> Result<DefaultPrefs, Error>
Convert the given XML text to a value.
source§impl IntoAttributeValue for DefaultPrefs
impl IntoAttributeValue for DefaultPrefs
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 DefaultPrefs
impl PartialEq for DefaultPrefs
impl StructuralPartialEq for DefaultPrefs
Auto Trait Implementations§
impl Freeze for DefaultPrefs
impl RefUnwindSafe for DefaultPrefs
impl Send for DefaultPrefs
impl Sync for DefaultPrefs
impl Unpin for DefaultPrefs
impl UnwindSafe for DefaultPrefs
Blanket Implementations§
source§impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more