pub enum SpecialOperation {
PushCharactersToFront = 0,
EraseAllCharacters = 1,
WarpPartyToHero = 2,
StartHeroPartySynchro = 3,
CancelHeroPartySynchro = 4,
MakePartyTransparent = 5,
CancelPartyTransparency = 6,
SavePartyMembers = 7,
LoadPartyMembers = 8,
TurnOnPartyFollowing = 9,
TurnOffPartyFollowing = 10,
Unknown = 11,
}Variants§
PushCharactersToFront = 0
EraseAllCharacters = 1
WarpPartyToHero = 2
StartHeroPartySynchro = 3
CancelHeroPartySynchro = 4
MakePartyTransparent = 5
CancelPartyTransparency = 6
SavePartyMembers = 7
LoadPartyMembers = 8
TurnOnPartyFollowing = 9
TurnOffPartyFollowing = 10
Unknown = 11
Implementations§
Trait Implementations§
Source§impl Clone for SpecialOperation
impl Clone for SpecialOperation
Source§fn clone(&self) -> SpecialOperation
fn clone(&self) -> SpecialOperation
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 PartialEq for SpecialOperation
impl PartialEq for SpecialOperation
impl StructuralPartialEq for SpecialOperation
Auto Trait Implementations§
impl Freeze for SpecialOperation
impl RefUnwindSafe for SpecialOperation
impl Send for SpecialOperation
impl Sync for SpecialOperation
impl Unpin for SpecialOperation
impl UnwindSafe for SpecialOperation
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