pub enum FormatCode {
AllDayPlay,
HalfDayPlay,
DayBoarding,
DayPlayPlusRoom,
CatIndividualPlaytime,
}Expand description
Storage-facing daycare format code used by service-offering records.
Variants§
AllDayPlay
Stable storage code for all day play.
HalfDayPlay
Stable storage code for half day play.
DayBoarding
Stable storage code for day boarding.
DayPlayPlusRoom
Stable storage code for day play plus room.
CatIndividualPlaytime
Stable storage code for cat individual playtime.
Trait Implementations§
Source§impl Clone for FormatCode
impl Clone for FormatCode
Source§fn clone(&self) -> FormatCode
fn clone(&self) -> FormatCode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FormatCode
impl Debug for FormatCode
Source§impl<'de> Deserialize<'de> for FormatCode
impl<'de> Deserialize<'de> for FormatCode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<DaycareFormat> for FormatCode
impl From<DaycareFormat> for FormatCode
Source§fn from(value: DaycareFormat) -> Self
fn from(value: DaycareFormat) -> Self
Converts to this type from the input type.
Source§impl From<FormatCode> for DaycareFormat
impl From<FormatCode> for DaycareFormat
Source§fn from(value: FormatCode) -> Self
fn from(value: FormatCode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FormatCode
impl PartialEq for FormatCode
Source§impl Serialize for FormatCode
impl Serialize for FormatCode
impl Copy for FormatCode
impl Eq for FormatCode
impl StructuralPartialEq for FormatCode
Auto Trait Implementations§
impl Freeze for FormatCode
impl RefUnwindSafe for FormatCode
impl Send for FormatCode
impl Sync for FormatCode
impl Unpin for FormatCode
impl UnsafeUnpin for FormatCode
impl UnwindSafe for FormatCode
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