pub struct AdvancementDisplay<'a, I> {
pub title: Cow<'a, TextComponent>,
pub description: Cow<'a, TextComponent>,
pub icon: I,
pub frame_type: VarInt,
pub flags: i32,
pub background_texture: Option<Ident<Cow<'a, str>>>,
pub x_coord: f32,
pub y_coord: f32,
}Fields§
§title: Cow<'a, TextComponent>§description: Cow<'a, TextComponent>§icon: I§frame_type: VarInt§flags: i32§background_texture: Option<Ident<Cow<'a, str>>>§x_coord: f32§y_coord: f32Trait Implementations§
Source§impl<'a, I: Clone> Clone for AdvancementDisplay<'a, I>
impl<'a, I: Clone> Clone for AdvancementDisplay<'a, I>
Source§fn clone(&self) -> AdvancementDisplay<'a, I>
fn clone(&self) -> AdvancementDisplay<'a, I>
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<'a, I: Debug> Debug for AdvancementDisplay<'a, I>
impl<'a, I: Debug> Debug for AdvancementDisplay<'a, I>
Source§impl<'a, I: Decode<'a>> Decode<'a> for AdvancementDisplay<'a, I>
impl<'a, I: Decode<'a>> Decode<'a> for AdvancementDisplay<'a, I>
Source§impl<I: Encode> Encode for AdvancementDisplay<'_, I>
impl<I: Encode> Encode for AdvancementDisplay<'_, I>
Source§impl<'a, I: PartialEq> PartialEq for AdvancementDisplay<'a, I>
impl<'a, I: PartialEq> PartialEq for AdvancementDisplay<'a, I>
impl<'a, I> StructuralPartialEq for AdvancementDisplay<'a, I>
Auto Trait Implementations§
impl<'a, I> Freeze for AdvancementDisplay<'a, I>where
I: Freeze,
impl<'a, I> RefUnwindSafe for AdvancementDisplay<'a, I>where
I: RefUnwindSafe,
impl<'a, I> Send for AdvancementDisplay<'a, I>where
I: Send,
impl<'a, I> Sync for AdvancementDisplay<'a, I>where
I: Sync,
impl<'a, I> Unpin for AdvancementDisplay<'a, I>where
I: Unpin,
impl<'a, I> UnwindSafe for AdvancementDisplay<'a, I>where
I: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.