pub struct PlaneAttractor {
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 PlaneAttractor
impl Clone for PlaneAttractor
Source§fn clone(&self) -> PlaneAttractor
fn clone(&self) -> PlaneAttractor
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 PlaneAttractor
impl Debug for PlaneAttractor
Source§impl Deserialize for PlaneAttractor
impl Deserialize for PlaneAttractor
Source§type Output = PlaneAttractor
type Output = PlaneAttractor
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl PartialEq for PlaneAttractor
impl PartialEq for PlaneAttractor
Source§impl Serialize for PlaneAttractor
impl Serialize for PlaneAttractor
type Input = PlaneAttractor
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for PlaneAttractor
Auto Trait Implementations§
impl Freeze for PlaneAttractor
impl RefUnwindSafe for PlaneAttractor
impl Send for PlaneAttractor
impl Sync for PlaneAttractor
impl Unpin for PlaneAttractor
impl UnwindSafe for PlaneAttractor
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