Enum xmpp_parsers::legacy_omemo::IsPreKey
source · pub enum IsPreKey {
True,
False,
}
Expand description
prekey attribute for the key element.
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 IsPreKey
impl IntoAttributeValue for IsPreKey
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 IsPreKey
impl PartialEq for IsPreKey
impl StructuralPartialEq for IsPreKey
Auto Trait Implementations§
impl Freeze for IsPreKey
impl RefUnwindSafe for IsPreKey
impl Send for IsPreKey
impl Sync for IsPreKey
impl Unpin for IsPreKey
impl UnwindSafe for IsPreKey
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