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