Struct imap_codec::core::NString
source · pub struct NString<'a>(pub Option<IString<'a>>);
Expand description
Either NIL or a string.
This is modeled using Rust’s Option
type.
ABNF definition
nstring = string / nil
; ^^^^^^
; |
; See `IString`
nil = "NIL"
Tuple Fields§
§0: Option<IString<'a>>
Implementations§
Trait Implementations§
source§impl<'a, 'arbitrary> Arbitrary<'arbitrary> for NString<'a>where
'arbitrary: 'a,
impl<'a, 'arbitrary> Arbitrary<'arbitrary> for NString<'a>where 'arbitrary: 'a,
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<NString<'a>, Error>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<NString<'a>, Error>
Generate an arbitrary value of
Self
from the given unstructured data. Read moresource§impl<'de, 'a> Deserialize<'de> for NString<'a>
impl<'de, 'a> Deserialize<'de> for NString<'a>
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<NString<'a>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<NString<'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 NString<'a>
impl<'a> IntoBoundedStatic for NString<'a>
source§fn into_static(self) -> <NString<'a> as IntoBoundedStatic>::Static
fn into_static(self) -> <NString<'a> as IntoBoundedStatic>::Static
Convert an owned
T
into an owned T
such that T: 'static
.source§impl<'a> PartialEq<NString<'a>> for NString<'a>
impl<'a> PartialEq<NString<'a>> for NString<'a>
source§impl<'a> Serialize for NString<'a>
impl<'a> Serialize for NString<'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 NString<'a>
impl<'a> ToBoundedStatic for NString<'a>
impl<'a> Eq for NString<'a>
impl<'a> StructuralEq for NString<'a>
impl<'a> StructuralPartialEq for NString<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for NString<'a>
impl<'a> Send for NString<'a>
impl<'a> Sync for NString<'a>
impl<'a> Unpin for NString<'a>
impl<'a> UnwindSafe for NString<'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