pub enum ProductFulfillmentMethod {
AutoMail(String),
ManualMail,
ProfileStyle,
}Variants§
AutoMail(String)
Automatically send a letter to the customer with the specified content.
ManualMail
Manually send a letter to the customer with the specified content.
This will leave the CoinTransfer pending until you send this mail.
ProfileStyle
A CSS snippet which can be applied to user profiles.
Only supporters can create products like this.
Trait Implementations§
Source§impl Clone for ProductFulfillmentMethod
impl Clone for ProductFulfillmentMethod
Source§fn clone(&self) -> ProductFulfillmentMethod
fn clone(&self) -> ProductFulfillmentMethod
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<'de> Deserialize<'de> for ProductFulfillmentMethod
impl<'de> Deserialize<'de> for ProductFulfillmentMethod
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 PartialEq for ProductFulfillmentMethod
impl PartialEq for ProductFulfillmentMethod
Source§impl Serialize for ProductFulfillmentMethod
impl Serialize for ProductFulfillmentMethod
impl Eq for ProductFulfillmentMethod
impl StructuralPartialEq for ProductFulfillmentMethod
Auto Trait Implementations§
impl Freeze for ProductFulfillmentMethod
impl RefUnwindSafe for ProductFulfillmentMethod
impl Send for ProductFulfillmentMethod
impl Sync for ProductFulfillmentMethod
impl Unpin for ProductFulfillmentMethod
impl UnwindSafe for ProductFulfillmentMethod
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.