pub struct TitleTimesSpec {
pub fade_in: i32,
pub stay: i32,
pub fade_out: i32,
}
Fields§
§fade_in: i32
§stay: i32
§fade_out: i32
Trait Implementations§
Source§impl Clone for TitleTimesSpec
impl Clone for TitleTimesSpec
Source§fn clone(&self) -> TitleTimesSpec
fn clone(&self) -> TitleTimesSpec
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 TitleTimesSpec
impl Debug for TitleTimesSpec
Source§impl Deserialize for TitleTimesSpec
impl Deserialize for TitleTimesSpec
fn mc_deserialize(_rest: &[u8]) -> DeserializeResult<'_, Self>
Source§impl From<TitleTimesSpec> for (i32, i32, i32)
impl From<TitleTimesSpec> for (i32, i32, i32)
Source§fn from(other: TitleTimesSpec) -> Self
fn from(other: TitleTimesSpec) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TitleTimesSpec
impl PartialEq for TitleTimesSpec
Source§impl Serialize for TitleTimesSpec
impl Serialize for TitleTimesSpec
fn mc_serialize<S: Serializer>(&self, to: &mut S) -> SerializeResult
impl StructuralPartialEq for TitleTimesSpec
Auto Trait Implementations§
impl Freeze for TitleTimesSpec
impl RefUnwindSafe for TitleTimesSpec
impl Send for TitleTimesSpec
impl Sync for TitleTimesSpec
impl Unpin for TitleTimesSpec
impl UnwindSafe for TitleTimesSpec
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