pub struct AdvancementProgressEntrySpec {
pub key: String,
pub value: AdvancementProgressSpec,
}
Fields§
§key: String
§value: AdvancementProgressSpec
Trait Implementations§
Source§impl Clone for AdvancementProgressEntrySpec
impl Clone for AdvancementProgressEntrySpec
Source§fn clone(&self) -> AdvancementProgressEntrySpec
fn clone(&self) -> AdvancementProgressEntrySpec
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 AdvancementProgressEntrySpec
impl Debug for AdvancementProgressEntrySpec
Source§impl Deserialize for AdvancementProgressEntrySpec
impl Deserialize for AdvancementProgressEntrySpec
fn mc_deserialize(_rest: &[u8]) -> DeserializeResult<'_, Self>
Source§impl From<(String, AdvancementProgressSpec)> for AdvancementProgressEntrySpec
impl From<(String, AdvancementProgressSpec)> for AdvancementProgressEntrySpec
Source§fn from(other: (String, AdvancementProgressSpec)) -> Self
fn from(other: (String, AdvancementProgressSpec)) -> Self
Converts to this type from the input type.
Source§impl From<AdvancementProgressEntrySpec> for (String, AdvancementProgressSpec)
impl From<AdvancementProgressEntrySpec> for (String, AdvancementProgressSpec)
Source§fn from(other: AdvancementProgressEntrySpec) -> Self
fn from(other: AdvancementProgressEntrySpec) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AdvancementProgressEntrySpec
impl PartialEq for AdvancementProgressEntrySpec
Source§fn eq(&self, other: &AdvancementProgressEntrySpec) -> bool
fn eq(&self, other: &AdvancementProgressEntrySpec) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for AdvancementProgressEntrySpec
impl Serialize for AdvancementProgressEntrySpec
fn mc_serialize<S: Serializer>(&self, to: &mut S) -> SerializeResult
impl StructuralPartialEq for AdvancementProgressEntrySpec
Auto Trait Implementations§
impl Freeze for AdvancementProgressEntrySpec
impl RefUnwindSafe for AdvancementProgressEntrySpec
impl Send for AdvancementProgressEntrySpec
impl Sync for AdvancementProgressEntrySpec
impl Unpin for AdvancementProgressEntrySpec
impl UnwindSafe for AdvancementProgressEntrySpec
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