pub struct AdvancementDisplay<'a, I> {
pub title: Cow<'a, Text>,
pub description: Cow<'a, Text>,
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, Text>
§description: Cow<'a, Text>
§icon: I
§frame_type: VarInt
§flags: i32
§background_texture: Option<Ident<Cow<'a, str>>>
§x_coord: f32
§y_coord: f32
Trait 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 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<'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,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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.