pub struct EmailAddressType {
pub id: Option<String>,
pub address: Option<String>,
pub default: Option<bool>,
pub tag: Option<String>,
}Fields§
§id: Option<String>§address: Option<String>§default: Option<bool>§tag: Option<String>Trait Implementations§
Source§impl Debug for EmailAddressType
impl Debug for EmailAddressType
Source§impl<'de> Deserializer<'de, EmailAddressType> for EmailAddressTypeDeserializer
impl<'de> Deserializer<'de, EmailAddressType> for EmailAddressTypeDeserializer
Source§fn init(
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> DeserializerResult<'de, EmailAddressType>
fn init( helper: &mut DeserializeHelper, event: Event<'de>, ) -> DeserializerResult<'de, EmailAddressType>
Source§fn next(
self,
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> DeserializerResult<'de, EmailAddressType>
fn next( self, helper: &mut DeserializeHelper, event: Event<'de>, ) -> DeserializerResult<'de, EmailAddressType>
Source§fn finish(
self,
helper: &mut DeserializeHelper,
) -> Result<EmailAddressType, Error>
fn finish( self, helper: &mut DeserializeHelper, ) -> Result<EmailAddressType, Error>
Force the deserializer to finish. Read more
Source§impl WithDeserializer for EmailAddressType
impl WithDeserializer for EmailAddressType
Source§type Deserializer = EmailAddressTypeDeserializer
type Deserializer = EmailAddressTypeDeserializer
The deserializer to use for this type.
Source§fn init<'de>(
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> Result<DeserializerOutput<'de, Self>, Error>
fn init<'de>( helper: &mut DeserializeHelper, event: Event<'de>, ) -> Result<DeserializerOutput<'de, Self>, Error>
Source§impl WithSerializer for EmailAddressType
impl WithSerializer for EmailAddressType
Source§type Serializer<'x> = EmailAddressTypeSerializer<'x>
type Serializer<'x> = EmailAddressTypeSerializer<'x>
The serializer to use for this type.
Source§fn serializer<'ser>(
&'ser self,
name: Option<&'ser str>,
is_root: bool,
) -> Result<Self::Serializer<'ser>, Error>
fn serializer<'ser>( &'ser self, name: Option<&'ser str>, is_root: bool, ) -> Result<Self::Serializer<'ser>, Error>
Initializes a new serializer from the passed
value. Read moreAuto Trait Implementations§
impl Freeze for EmailAddressType
impl RefUnwindSafe for EmailAddressType
impl Send for EmailAddressType
impl Sync for EmailAddressType
impl Unpin for EmailAddressType
impl UnsafeUnpin for EmailAddressType
impl UnwindSafe for EmailAddressType
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