pub struct RecurringInfoType {
pub name: Option<String>,
pub recur_type: Option<String>,
pub active: Option<bool>,
pub schedule_info: Option<RecurringScheduleInfoType>,
}Fields§
§name: Option<String>§recur_type: Option<String>§active: Option<bool>§schedule_info: Option<RecurringScheduleInfoType>Trait Implementations§
Source§impl Debug for RecurringInfoType
impl Debug for RecurringInfoType
Source§impl<'de> Deserializer<'de, RecurringInfoType> for RecurringInfoTypeDeserializer
impl<'de> Deserializer<'de, RecurringInfoType> for RecurringInfoTypeDeserializer
Source§fn init(
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> DeserializerResult<'de, RecurringInfoType>
fn init( helper: &mut DeserializeHelper, event: Event<'de>, ) -> DeserializerResult<'de, RecurringInfoType>
Source§fn next(
self,
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> DeserializerResult<'de, RecurringInfoType>
fn next( self, helper: &mut DeserializeHelper, event: Event<'de>, ) -> DeserializerResult<'de, RecurringInfoType>
Source§fn finish(
self,
helper: &mut DeserializeHelper,
) -> Result<RecurringInfoType, Error>
fn finish( self, helper: &mut DeserializeHelper, ) -> Result<RecurringInfoType, Error>
Force the deserializer to finish. Read more
Source§impl WithDeserializer for RecurringInfoType
impl WithDeserializer for RecurringInfoType
Source§type Deserializer = RecurringInfoTypeDeserializer
type Deserializer = RecurringInfoTypeDeserializer
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 RecurringInfoType
impl WithSerializer for RecurringInfoType
Source§type Serializer<'x> = RecurringInfoTypeSerializer<'x>
type Serializer<'x> = RecurringInfoTypeSerializer<'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 RecurringInfoType
impl RefUnwindSafe for RecurringInfoType
impl Send for RecurringInfoType
impl Sync for RecurringInfoType
impl Unpin for RecurringInfoType
impl UnsafeUnpin for RecurringInfoType
impl UnwindSafe for RecurringInfoType
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