pub struct LineAttractor {
pub attract: TweenedParameter<RangedParameter<f32>>,
pub origin: TweenedParameter<v3f>,
pub attachment: u16,
pub kill: u8,
pub direction: TweenedParameter<v3f>,
pub direction_attachment: u16,
}
Fields§
§attract: TweenedParameter<RangedParameter<f32>>
§origin: TweenedParameter<v3f>
§attachment: u16
§kill: u8
§direction: TweenedParameter<v3f>
§direction_attachment: u16
Trait Implementations§
Source§impl Clone for LineAttractor
impl Clone for LineAttractor
Source§fn clone(&self) -> LineAttractor
fn clone(&self) -> LineAttractor
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 Debug for LineAttractor
impl Debug for LineAttractor
Source§impl Deserialize for LineAttractor
impl Deserialize for LineAttractor
Source§type Output = LineAttractor
type Output = LineAttractor
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl PartialEq for LineAttractor
impl PartialEq for LineAttractor
Source§impl Serialize for LineAttractor
impl Serialize for LineAttractor
type Input = LineAttractor
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for LineAttractor
Auto Trait Implementations§
impl Freeze for LineAttractor
impl RefUnwindSafe for LineAttractor
impl Send for LineAttractor
impl Sync for LineAttractor
impl Unpin for LineAttractor
impl UnwindSafe for LineAttractor
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