pub enum LooksOpcode {
Show 21 variants
SayForSeconds,
Say,
ThinkForSeconds,
Think,
SwitchCostumeTo,
NextCostume,
SwitchBackdropTo,
SwitchBackdropToAndWait,
NextBackdrop,
ChangeSizeBy,
SetSizeTo,
ChangeEffectBy,
SetEffectTo,
ClearGraphicEffects,
Show,
Hide,
GoToLayer,
GoLayers,
Costume,
Backdrop,
Size,
}Expand description
Looks opcodes
Variants§
SayForSeconds
Say
ThinkForSeconds
Think
SwitchCostumeTo
NextCostume
SwitchBackdropTo
SwitchBackdropToAndWait
NextBackdrop
ChangeSizeBy
SetSizeTo
ChangeEffectBy
SetEffectTo
ClearGraphicEffects
Show
Hide
GoToLayer
GoLayers
Costume
Backdrop
Size
Trait Implementations§
Source§impl Clone for LooksOpcode
impl Clone for LooksOpcode
Source§fn clone(&self) -> LooksOpcode
fn clone(&self) -> LooksOpcode
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 LooksOpcode
impl Debug for LooksOpcode
Source§impl FromStr for LooksOpcode
impl FromStr for LooksOpcode
Source§impl Hash for LooksOpcode
impl Hash for LooksOpcode
Source§impl PartialEq for LooksOpcode
impl PartialEq for LooksOpcode
impl Copy for LooksOpcode
impl Eq for LooksOpcode
impl StructuralPartialEq for LooksOpcode
Auto Trait Implementations§
impl Freeze for LooksOpcode
impl RefUnwindSafe for LooksOpcode
impl Send for LooksOpcode
impl Sync for LooksOpcode
impl Unpin for LooksOpcode
impl UnwindSafe for LooksOpcode
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.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more