#[repr(u32)]pub enum TestFunction {
AlwaysPass = 0,
}
Variants§
AlwaysPass = 0
Implementations§
Source§impl TestFunction
impl TestFunction
pub fn azalea_read_id( buf: &mut Cursor<&[u8]>, id: u32, ) -> Result<Self, BufReadError>
Source§impl TestFunction
impl TestFunction
Sourcepub unsafe fn from_u32_unchecked(id: u32) -> Self
pub unsafe fn from_u32_unchecked(id: u32) -> Self
pub fn is_valid_id(id: u32) -> bool
Trait Implementations§
Source§impl AzaleaRead for TestFunction
impl AzaleaRead for TestFunction
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
Source§impl AzaleaWrite for TestFunction
impl AzaleaWrite for TestFunction
Source§impl Clone for TestFunction
impl Clone for TestFunction
Source§fn clone(&self) -> TestFunction
fn clone(&self) -> TestFunction
Returns a copy 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 TestFunction
impl Debug for TestFunction
Source§impl<'de> Deserialize<'de> for TestFunction
impl<'de> Deserialize<'de> for TestFunction
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 TestFunction
impl Display for TestFunction
Source§impl FromNbtTag for TestFunction
impl FromNbtTag for TestFunction
fn from_nbt_tag(tag: NbtTag<'_, '_>) -> Option<Self>
fn from_optional_nbt_tag( tag: Option<NbtTag<'_, '_>>, ) -> Result<Option<Self>, DeserializeError>
Source§impl FromStr for TestFunction
impl FromStr for TestFunction
Source§impl Hash for TestFunction
impl Hash for TestFunction
Source§impl PartialEq for TestFunction
impl PartialEq for TestFunction
Source§impl Registry for TestFunction
impl Registry for TestFunction
Source§impl Serialize for TestFunction
impl Serialize for TestFunction
Source§impl ToNbtTag for TestFunction
impl ToNbtTag for TestFunction
fn to_nbt_tag(self) -> NbtTag
fn to_optional_nbt_tag(self) -> Option<NbtTag>
Source§impl TryFrom<u32> for TestFunction
impl TryFrom<u32> for TestFunction
impl Copy for TestFunction
impl Eq for TestFunction
impl StructuralPartialEq for TestFunction
Auto Trait Implementations§
impl Freeze for TestFunction
impl RefUnwindSafe for TestFunction
impl Send for TestFunction
impl Sync for TestFunction
impl Unpin for TestFunction
impl UnwindSafe for TestFunction
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