pub struct ServerParticleTextureNewPropsOnly {
pub blend_mode: BlendMode,
pub alpha: TweenedParameter<f32>,
pub scale: TweenedParameter<v2f>,
pub animation: Option<TileAnimationParams>,
}
Fields§
§blend_mode: BlendMode
§alpha: TweenedParameter<f32>
§scale: TweenedParameter<v2f>
§animation: Option<TileAnimationParams>
Trait Implementations§
Source§impl Clone for ServerParticleTextureNewPropsOnly
impl Clone for ServerParticleTextureNewPropsOnly
Source§fn clone(&self) -> ServerParticleTextureNewPropsOnly
fn clone(&self) -> ServerParticleTextureNewPropsOnly
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Deserialize for ServerParticleTextureNewPropsOnly
impl Deserialize for ServerParticleTextureNewPropsOnly
Source§type Output = ServerParticleTextureNewPropsOnly
type Output = ServerParticleTextureNewPropsOnly
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl PartialEq for ServerParticleTextureNewPropsOnly
impl PartialEq for ServerParticleTextureNewPropsOnly
Source§fn eq(&self, other: &ServerParticleTextureNewPropsOnly) -> bool
fn eq(&self, other: &ServerParticleTextureNewPropsOnly) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for ServerParticleTextureNewPropsOnly
impl Serialize for ServerParticleTextureNewPropsOnly
type Input = ServerParticleTextureNewPropsOnly
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for ServerParticleTextureNewPropsOnly
Auto Trait Implementations§
impl Freeze for ServerParticleTextureNewPropsOnly
impl RefUnwindSafe for ServerParticleTextureNewPropsOnly
impl Send for ServerParticleTextureNewPropsOnly
impl Sync for ServerParticleTextureNewPropsOnly
impl Unpin for ServerParticleTextureNewPropsOnly
impl UnwindSafe for ServerParticleTextureNewPropsOnly
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