Enum imap_codec::core::AString
source · pub enum AString<'a> {
Atom(AtomExt<'a>),
String(IString<'a>),
}
Expand description
Either an (extended) atom or a string.
ABNF definition
astring = 1*ASTRING-CHAR / string
; ^^^^^^^^^^^^^^
; |
; See `AtomExt`
Variants§
Trait Implementations§
source§impl<'a, 'arbitrary> Arbitrary<'arbitrary> for AString<'a>where
'arbitrary: 'a,
impl<'a, 'arbitrary> Arbitrary<'arbitrary> for AString<'a>where 'arbitrary: 'a,
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<AString<'a>, Error>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<AString<'a>, Error>
Generate an arbitrary value of
Self
from the given unstructured data. Read moresource§impl<'de, 'a> Deserialize<'de> for AString<'a>
impl<'de, 'a> Deserialize<'de> for AString<'a>
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<AString<'a>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<AString<'a>, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'a> IntoBoundedStatic for AString<'a>
impl<'a> IntoBoundedStatic for AString<'a>
source§fn into_static(self) -> <AString<'a> as IntoBoundedStatic>::Static
fn into_static(self) -> <AString<'a> as IntoBoundedStatic>::Static
Convert an owned
T
into an owned T
such that T: 'static
.source§impl<'a> PartialEq<AString<'a>> for AString<'a>
impl<'a> PartialEq<AString<'a>> for AString<'a>
source§impl<'a> Serialize for AString<'a>
impl<'a> Serialize for AString<'a>
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§impl<'a> ToBoundedStatic for AString<'a>
impl<'a> ToBoundedStatic for AString<'a>
source§impl<'a> TryFrom<AString<'a>> for MailboxOther<'a>
impl<'a> TryFrom<AString<'a>> for MailboxOther<'a>
§type Error = MailboxOtherError
type Error = MailboxOtherError
The type returned in the event of a conversion error.
source§fn try_from(
value: AString<'a>
) -> Result<MailboxOther<'a>, <MailboxOther<'a> as TryFrom<AString<'a>>>::Error>
fn try_from( value: AString<'a> ) -> Result<MailboxOther<'a>, <MailboxOther<'a> as TryFrom<AString<'a>>>::Error>
Performs the conversion.
impl<'a> Eq for AString<'a>
impl<'a> StructuralEq for AString<'a>
impl<'a> StructuralPartialEq for AString<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for AString<'a>
impl<'a> Send for AString<'a>
impl<'a> Sync for AString<'a>
impl<'a> Unpin for AString<'a>
impl<'a> UnwindSafe for AString<'a>
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