pub struct SkyblockNpc {
pub internal_id: String,
pub name: Option<String>,
pub flags: Option<NpcFlags>,
pub location: Option<NpcLocation>,
pub visitor: Option<NpcGardenVisitor>,
}Fields§
§internal_id: String§name: Option<String>§flags: Option<NpcFlags>§location: Option<NpcLocation>§visitor: Option<NpcGardenVisitor>Trait Implementations§
Source§impl Clone for SkyblockNpc
impl Clone for SkyblockNpc
Source§fn clone(&self) -> SkyblockNpc
fn clone(&self) -> SkyblockNpc
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 SkyblockNpc
impl Debug for SkyblockNpc
Source§impl<'de> Deserialize<'de> for SkyblockNpc
impl<'de> Deserialize<'de> for SkyblockNpc
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 PartialEq for SkyblockNpc
impl PartialEq for SkyblockNpc
Source§impl Serialize for SkyblockNpc
impl Serialize for SkyblockNpc
impl StructuralPartialEq for SkyblockNpc
Auto Trait Implementations§
impl Freeze for SkyblockNpc
impl RefUnwindSafe for SkyblockNpc
impl Send for SkyblockNpc
impl Sync for SkyblockNpc
impl Unpin for SkyblockNpc
impl UnwindSafe for SkyblockNpc
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