pub struct RecipeBookStates {
pub crafting_book_open: bool,
pub craftinb_filter_active: bool,
pub smelting_book_open: bool,
pub smelting_filter_active: bool,
pub blasting_book_open: bool,
pub blasting_filter_active: bool,
pub smoking_book_open: bool,
pub smoking_filter_active: bool,
}
Fields§
§crafting_book_open: bool
§craftinb_filter_active: bool
§smelting_book_open: bool
§smelting_filter_active: bool
§blasting_book_open: bool
§blasting_filter_active: bool
§smoking_book_open: bool
§smoking_filter_active: bool
Trait Implementations§
Source§impl Clone for RecipeBookStates
impl Clone for RecipeBookStates
Source§fn clone(&self) -> RecipeBookStates
fn clone(&self) -> RecipeBookStates
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 RecipeBookStates
impl Debug for RecipeBookStates
Source§impl Deserialize for RecipeBookStates
impl Deserialize for RecipeBookStates
fn mc_deserialize(_rest: &[u8]) -> DeserializeResult<'_, Self>
Source§impl From<RecipeBookStates> for (bool, bool, bool, bool, bool, bool, bool, bool)
impl From<RecipeBookStates> for (bool, bool, bool, bool, bool, bool, bool, bool)
Source§fn from(other: RecipeBookStates) -> Self
fn from(other: RecipeBookStates) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RecipeBookStates
impl PartialEq for RecipeBookStates
Source§impl Serialize for RecipeBookStates
impl Serialize for RecipeBookStates
fn mc_serialize<S: Serializer>(&self, to: &mut S) -> SerializeResult
impl StructuralPartialEq for RecipeBookStates
Auto Trait Implementations§
impl Freeze for RecipeBookStates
impl RefUnwindSafe for RecipeBookStates
impl Send for RecipeBookStates
impl Sync for RecipeBookStates
impl Unpin for RecipeBookStates
impl UnwindSafe for RecipeBookStates
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