pub struct NpcTalkReply {
pub npc_id: String,
pub line: String,
pub trust_flag: NpcTalkTrustFlag,
pub wind_down: bool,
pub trade_disabled: bool,
}Fields§
§npc_id: String§line: String§trust_flag: NpcTalkTrustFlag§wind_down: bool§trade_disabled: boolTrait Implementations§
Source§impl Clone for NpcTalkReply
impl Clone for NpcTalkReply
Source§fn clone(&self) -> NpcTalkReply
fn clone(&self) -> NpcTalkReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NpcTalkReply
impl Debug for NpcTalkReply
Source§impl<'de> Deserialize<'de> for NpcTalkReply
impl<'de> Deserialize<'de> for NpcTalkReply
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 NpcTalkReply
impl PartialEq for NpcTalkReply
Source§impl Serialize for NpcTalkReply
impl Serialize for NpcTalkReply
impl StructuralPartialEq for NpcTalkReply
Auto Trait Implementations§
impl Freeze for NpcTalkReply
impl RefUnwindSafe for NpcTalkReply
impl Send for NpcTalkReply
impl Sync for NpcTalkReply
impl Unpin for NpcTalkReply
impl UnsafeUnpin for NpcTalkReply
impl UnwindSafe for NpcTalkReply
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