pub enum MailRepeatType {
Daily,
Weekly,
Monthly,
Yearly,
}Variants§
Trait Implementations§
Source§impl Clone for MailRepeatType
impl Clone for MailRepeatType
Source§fn clone(&self) -> MailRepeatType
fn clone(&self) -> MailRepeatType
Returns a copy 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 MailRepeatType
impl Debug for MailRepeatType
Source§impl Default for MailRepeatType
impl Default for MailRepeatType
Source§fn default() -> MailRepeatType
fn default() -> MailRepeatType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MailRepeatType
impl<'de> Deserialize<'de> for MailRepeatType
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 Display for MailRepeatType
impl Display for MailRepeatType
Source§impl FromStr for MailRepeatType
impl FromStr for MailRepeatType
Source§impl Hash for MailRepeatType
impl Hash for MailRepeatType
Source§impl IntoEnumIterator for MailRepeatType
impl IntoEnumIterator for MailRepeatType
type Iterator = MailRepeatTypeIter
fn iter() -> MailRepeatTypeIter ⓘ
Source§impl JsonSchema for MailRepeatType
impl JsonSchema for MailRepeatType
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for MailRepeatType
impl PartialEq for MailRepeatType
Source§impl Serialize for MailRepeatType
impl Serialize for MailRepeatType
Source§impl TryFrom<&str> for MailRepeatType
impl TryFrom<&str> for MailRepeatType
Source§impl Tsify for MailRepeatType
impl Tsify for MailRepeatType
const DECL: &'static str = "declare namespace MailRepeatType {\n export type Daily = \"Daily\";\n export type Weekly = \"Weekly\";\n export type Monthly = \"Monthly\";\n export type Yearly = \"Yearly\";\n}\n\nexport type MailRepeatType = \"Daily\" | \"Weekly\" | \"Monthly\" | \"Yearly\";"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
impl Copy for MailRepeatType
impl Eq for MailRepeatType
impl StructuralPartialEq for MailRepeatType
Auto Trait Implementations§
impl Freeze for MailRepeatType
impl RefUnwindSafe for MailRepeatType
impl Send for MailRepeatType
impl Sync for MailRepeatType
impl Unpin for MailRepeatType
impl UnwindSafe for MailRepeatType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more