Struct amethyst_core::frame_limiter::FrameRateLimitConfig[][src]

pub struct FrameRateLimitConfig { /* fields omitted */ }

Frame limiting configuration loaded from a configuration file.

Provides the configuration for a FrameLimiter using a configuration file. The config file can be loaded using the methods of the Config trait.

Examples

use amethyst::prelude::*;
use amethyst::core::frame_limiter::FrameRateLimitConfig;

let config = FrameRateLimitConfig::load("./resources/frame_limiter.ron");

Trait Implementations

impl Debug for FrameRateLimitConfig
[src]

Formats the value using the given formatter. Read more

impl Clone for FrameRateLimitConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for FrameRateLimitConfig
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for FrameRateLimitConfig

impl Sync for FrameRateLimitConfig