pub enum SculkSensorPhase {
Inactive,
Active,
Cooldown,
}Available on crate features
1.20.5 and block-states only.Variants§
Trait Implementations§
Source§impl Clone for SculkSensorPhase
impl Clone for SculkSensorPhase
Source§fn clone(&self) -> SculkSensorPhase
fn clone(&self) -> SculkSensorPhase
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 SculkSensorPhase
impl Debug for SculkSensorPhase
Source§impl<'de> Deserialize<'de> for SculkSensorPhase
impl<'de> Deserialize<'de> for SculkSensorPhase
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 SculkSensorPhase
impl Display for SculkSensorPhase
Source§impl FromStr for SculkSensorPhase
impl FromStr for SculkSensorPhase
Source§impl Hash for SculkSensorPhase
impl Hash for SculkSensorPhase
Source§impl PartialEq for SculkSensorPhase
impl PartialEq for SculkSensorPhase
Source§impl Serialize for SculkSensorPhase
impl Serialize for SculkSensorPhase
Source§impl TryFrom<&str> for SculkSensorPhase
impl TryFrom<&str> for SculkSensorPhase
impl Copy for SculkSensorPhase
impl Eq for SculkSensorPhase
impl StructuralPartialEq for SculkSensorPhase
Auto Trait Implementations§
impl Freeze for SculkSensorPhase
impl RefUnwindSafe for SculkSensorPhase
impl Send for SculkSensorPhase
impl Sync for SculkSensorPhase
impl Unpin for SculkSensorPhase
impl UnwindSafe for SculkSensorPhase
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<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