pub struct OwnedGlobalSettings {Show 16 fields
pub up_axis: i32,
pub up_axis_sign: i32,
pub front_axis: i32,
pub front_axis_sign: i32,
pub coord_axis: i32,
pub coord_axis_sign: i32,
pub original_up_axis: i32,
pub original_up_axis_sign: i32,
pub unit_scale_factor: f32,
pub original_unit_scale_factor: f32,
pub ambient_color: [f32; 3],
pub default_camera: String,
pub time_span_start: u64,
pub time_span_stop: u64,
pub custom_frame_rate: f32,
pub frame_rate: FrameRate,
}Fields§
§up_axis: i32§up_axis_sign: i32§front_axis: i32§front_axis_sign: i32§coord_axis: i32§coord_axis_sign: i32§original_up_axis: i32§original_up_axis_sign: i32§unit_scale_factor: f32§original_unit_scale_factor: f32§ambient_color: [f32; 3]§default_camera: String§time_span_start: u64§time_span_stop: u64§custom_frame_rate: f32§frame_rate: FrameRateTrait Implementations§
Source§impl Clone for OwnedGlobalSettings
impl Clone for OwnedGlobalSettings
Source§fn clone(&self) -> OwnedGlobalSettings
fn clone(&self) -> OwnedGlobalSettings
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 Debug for OwnedGlobalSettings
impl Debug for OwnedGlobalSettings
Source§impl Default for OwnedGlobalSettings
impl Default for OwnedGlobalSettings
Source§impl<'a> From<GlobalSettings<'a>> for OwnedGlobalSettings
impl<'a> From<GlobalSettings<'a>> for OwnedGlobalSettings
Source§fn from(global_settings: GlobalSettings<'a>) -> Self
fn from(global_settings: GlobalSettings<'a>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OwnedGlobalSettings
impl PartialEq for OwnedGlobalSettings
impl StructuralPartialEq for OwnedGlobalSettings
Auto Trait Implementations§
impl Freeze for OwnedGlobalSettings
impl RefUnwindSafe for OwnedGlobalSettings
impl Send for OwnedGlobalSettings
impl Sync for OwnedGlobalSettings
impl Unpin for OwnedGlobalSettings
impl UnsafeUnpin for OwnedGlobalSettings
impl UnwindSafe for OwnedGlobalSettings
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