pub struct MultimeshPhysicsInterpolationQuality { /* private fields */ }
Implementations§
Source§impl MultimeshPhysicsInterpolationQuality
impl MultimeshPhysicsInterpolationQuality
Sourcepub const FAST: MultimeshPhysicsInterpolationQuality
pub const FAST: MultimeshPhysicsInterpolationQuality
Godot enumerator name: MULTIMESH_INTERP_QUALITY_FAST
Sourcepub const HIGH: MultimeshPhysicsInterpolationQuality
pub const HIGH: MultimeshPhysicsInterpolationQuality
Godot enumerator name: MULTIMESH_INTERP_QUALITY_HIGH
Trait Implementations§
Source§impl Clone for MultimeshPhysicsInterpolationQuality
impl Clone for MultimeshPhysicsInterpolationQuality
Source§fn clone(&self) -> MultimeshPhysicsInterpolationQuality
fn clone(&self) -> MultimeshPhysicsInterpolationQuality
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 EngineEnum for MultimeshPhysicsInterpolationQuality
impl EngineEnum for MultimeshPhysicsInterpolationQuality
fn try_from_ord(ord: i32) -> Option<Self>
Source§fn ord(self) -> i32
fn ord(self) -> i32
Ordinal value of the enumerator, as specified in Godot.
This is not necessarily unique.
Source§fn godot_name(&self) -> &'static str
fn godot_name(&self) -> &'static str
👎Deprecated: Moved to introspection API, see
EngineEnum::all_constants()
and EnumConstant::godot_name()
The equivalent name of the enumerator, as specified in Godot. Read more
Source§fn all_constants() -> &'static [EnumConstant<MultimeshPhysicsInterpolationQuality>]
fn all_constants() -> &'static [EnumConstant<MultimeshPhysicsInterpolationQuality>]
Returns metadata for all enum constants. Read more
fn from_ord(ord: i32) -> Self
Source§impl FromGodot for MultimeshPhysicsInterpolationQuality
impl FromGodot for MultimeshPhysicsInterpolationQuality
Source§fn try_from_godot(via: Self::Via) -> Result<Self, ConvertError>
fn try_from_godot(via: Self::Via) -> Result<Self, ConvertError>
Converts the Godot representation to this type, returning
Err
on failure.Source§fn from_godot(via: Self::Via) -> Self
fn from_godot(via: Self::Via) -> Self
⚠️ Converts the Godot representation to this type. Read more
Source§fn try_from_variant(variant: &Variant) -> Result<Self, ConvertError>
fn try_from_variant(variant: &Variant) -> Result<Self, ConvertError>
Performs the conversion from a [
Variant
], returning Err
on failure.Source§fn from_variant(variant: &Variant) -> Self
fn from_variant(variant: &Variant) -> Self
⚠️ Performs the conversion from a [
Variant
]. Read moreSource§impl PartialEq for MultimeshPhysicsInterpolationQuality
impl PartialEq for MultimeshPhysicsInterpolationQuality
Source§fn eq(&self, other: &MultimeshPhysicsInterpolationQuality) -> bool
fn eq(&self, other: &MultimeshPhysicsInterpolationQuality) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ToGodot for MultimeshPhysicsInterpolationQuality
impl ToGodot for MultimeshPhysicsInterpolationQuality
impl Copy for MultimeshPhysicsInterpolationQuality
impl Eq for MultimeshPhysicsInterpolationQuality
impl StructuralPartialEq for MultimeshPhysicsInterpolationQuality
Auto Trait Implementations§
impl Freeze for MultimeshPhysicsInterpolationQuality
impl RefUnwindSafe for MultimeshPhysicsInterpolationQuality
impl Send for MultimeshPhysicsInterpolationQuality
impl Sync for MultimeshPhysicsInterpolationQuality
impl Unpin for MultimeshPhysicsInterpolationQuality
impl UnwindSafe for MultimeshPhysicsInterpolationQuality
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