pub enum SwitchType {
Normal,
CopyVolatile,
IfHit,
}Expand description
The type of user switch performed when using a move.
Variants§
Normal
Normal switch out.
CopyVolatile
Switch out that copies all volatile effects to the replacement Mon.
IfHit
Normal switch out if the move hit.
Implementations§
Trait Implementations§
Source§impl Clone for SwitchType
impl Clone for SwitchType
Source§fn clone(&self) -> SwitchType
fn clone(&self) -> SwitchType
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 SwitchType
impl Debug for SwitchType
Source§impl Default for SwitchType
impl Default for SwitchType
Source§fn default() -> SwitchType
fn default() -> SwitchType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SwitchType
impl<'de> Deserialize<'de> for SwitchType
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 SwitchType
impl Display for SwitchType
Source§impl FromStr for SwitchType
impl FromStr for SwitchType
Source§impl PartialEq for SwitchType
impl PartialEq for SwitchType
Source§impl Serialize for SwitchType
impl Serialize for SwitchType
impl Copy for SwitchType
impl Eq for SwitchType
impl StructuralPartialEq for SwitchType
Auto Trait Implementations§
impl Freeze for SwitchType
impl RefUnwindSafe for SwitchType
impl Send for SwitchType
impl Sync for SwitchType
impl Unpin for SwitchType
impl UnsafeUnpin for SwitchType
impl UnwindSafe for SwitchType
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.