pub enum CameraColumn {
Show 60 variants CameraName, PitchAngleTolerance, StartingZoom, ZoomReturnModifier, PitchReturnModifier, TetherOutReturnModifier, TetherInReturnMultiplier, VerticleMovementDampeningModifier, ReturnFromInclineModifier, HorizontalReturnModifier, YawBehaviorSpeedMultiplier, CameraCollisionPadding, GlideSpeed, FadePlayerMinRange, MinMovementDeltaTolerance, MinGlideDistanceTolerance, LookForwardOffset, LookUpOffset, MinimumVerticalDampeningDistance, MaximumVerticalDampeningDistance, MinimumIgnoreJumpDistance, MaximumIgnoreJumpDistance, MaximumAutoGlideAngle, MinimumTetherGlideDistance, YawSignCorrection, Set1LookForwardOffset, Set1LookUpOffset, Set2LookForwardOffset, Set2LookUpOffset, Set0SpeedInfluenceOnDir, Set1SpeedInfluenceOnDir, Set2SpeedInfluenceOnDir, Set0AngularRelaxation, Set1AngularRelaxation, Set2AngularRelaxation, Set0PositionUpOffset, Set1PositionUpOffset, Set2PositionUpOffset, Set0PositionForwardOffset, Set1PositionForwardOffset, Set2PositionForwardOffset, Set0Fov, Set1Fov, Set2Fov, Set0MaxYawAngle, Set1MaxYawAngle, Set2MaxYawAngle, Set1FadeInCameraSetChange, Set1FadeOutCameraSetChange, Set2FadeInCameraSetChange, Set2FadeOutCameraSetChange, InputMovementScalar, InputRotationScalar, InputZoomScalar, MinimumPitchDesired, MaximumPitchDesired, MinimumZoom, MaximumZoom, HorizontalRotateTolerance, HorizontalRotateModifier,
}
Expand description

Columns in table Camera

See also: [`Camera.html>

Variants§

§

CameraName

Index of column camera_name

§

PitchAngleTolerance

Index of column pitch_angle_tolerance

§

StartingZoom

Index of column starting_zoom

§

ZoomReturnModifier

Index of column zoom_return_modifier

§

PitchReturnModifier

Index of column pitch_return_modifier

§

TetherOutReturnModifier

Index of column tether_out_return_modifier

§

TetherInReturnMultiplier

Index of column tether_in_return_multiplier

§

VerticleMovementDampeningModifier

Index of column verticle_movement_dampening_modifier

§

ReturnFromInclineModifier

Index of column return_from_incline_modifier

§

HorizontalReturnModifier

Index of column horizontal_return_modifier

§

YawBehaviorSpeedMultiplier

Index of column yaw_behavior_speed_multiplier

§

CameraCollisionPadding

Index of column camera_collision_padding

§

GlideSpeed

Index of column glide_speed

§

FadePlayerMinRange

Index of column fade_player_min_range

§

MinMovementDeltaTolerance

Index of column min_movement_delta_tolerance

§

MinGlideDistanceTolerance

Index of column min_glide_distance_tolerance

§

LookForwardOffset

Index of column look_forward_offset

§

LookUpOffset

Index of column look_up_offset

§

MinimumVerticalDampeningDistance

Index of column minimum_vertical_dampening_distance

§

MaximumVerticalDampeningDistance

Index of column maximum_vertical_dampening_distance

§

MinimumIgnoreJumpDistance

Index of column minimum_ignore_jump_distance

§

MaximumIgnoreJumpDistance

Index of column maximum_ignore_jump_distance

§

MaximumAutoGlideAngle

Index of column maximum_auto_glide_angle

§

MinimumTetherGlideDistance

Index of column minimum_tether_glide_distance

§

YawSignCorrection

Index of column yaw_sign_correction

§

Set1LookForwardOffset

Index of column set_1_look_forward_offset

§

Set1LookUpOffset

Index of column set_1_look_up_offset

§

Set2LookForwardOffset

Index of column set_2_look_forward_offset

§

Set2LookUpOffset

Index of column set_2_look_up_offset

§

Set0SpeedInfluenceOnDir

Index of column set_0_speed_influence_on_dir

§

Set1SpeedInfluenceOnDir

Index of column set_1_speed_influence_on_dir

§

Set2SpeedInfluenceOnDir

Index of column set_2_speed_influence_on_dir

§

Set0AngularRelaxation

Index of column set_0_angular_relaxation

§

Set1AngularRelaxation

Index of column set_1_angular_relaxation

§

Set2AngularRelaxation

Index of column set_2_angular_relaxation

§

Set0PositionUpOffset

Index of column set_0_position_up_offset

§

Set1PositionUpOffset

Index of column set_1_position_up_offset

§

Set2PositionUpOffset

Index of column set_2_position_up_offset

§

Set0PositionForwardOffset

Index of column set_0_position_forward_offset

§

Set1PositionForwardOffset

Index of column set_1_position_forward_offset

§

Set2PositionForwardOffset

Index of column set_2_position_forward_offset

§

Set0Fov

Index of column set_0_FOV

§

Set1Fov

Index of column set_1_FOV

§

Set2Fov

Index of column set_2_FOV

§

Set0MaxYawAngle

Index of column set_0_max_yaw_angle

§

Set1MaxYawAngle

Index of column set_1_max_yaw_angle

§

Set2MaxYawAngle

Index of column set_2_max_yaw_angle

§

Set1FadeInCameraSetChange

Index of column set_1_fade_in_camera_set_change

§

Set1FadeOutCameraSetChange

Index of column set_1_fade_out_camera_set_change

§

Set2FadeInCameraSetChange

Index of column set_2_fade_in_camera_set_change

§

Set2FadeOutCameraSetChange

Index of column set_2_fade_out_camera_set_change

§

InputMovementScalar

Index of column input_movement_scalar

§

InputRotationScalar

Index of column input_rotation_scalar

§

InputZoomScalar

Index of column input_zoom_scalar

§

MinimumPitchDesired

Index of column minimum_pitch_desired

§

MaximumPitchDesired

Index of column maximum_pitch_desired

§

MinimumZoom

Index of column minimum_zoom

§

MaximumZoom

Index of column maximum_zoom

§

HorizontalRotateTolerance

Index of column horizontal_rotate_tolerance

§

HorizontalRotateModifier

Index of column horizontal_rotate_modifier

Trait Implementations§

source§

impl Clone for CameraColumn

source§

fn clone(&self) -> CameraColumn

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CameraColumn

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for CameraColumn

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for CameraColumn

source§

fn cmp(&self, other: &CameraColumn) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<CameraColumn> for CameraColumn

source§

fn eq(&self, other: &CameraColumn) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<CameraColumn> for CameraColumn

source§

fn partial_cmp(&self, other: &CameraColumn) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl TypedColumn for CameraColumn

source§

fn to_static_str(&self) -> &'static str

Return the original name of the column
source§

fn serialize_struct_field<S: SerializeStruct>( &self, s: &mut S, value: Field<'_> ) -> Result<(), S::Error>

Serialize a field to a struct
source§

impl Copy for CameraColumn

source§

impl Eq for CameraColumn

source§

impl StructuralEq for CameraColumn

source§

impl StructuralPartialEq for CameraColumn

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.