pub struct AnimationOptions {
pub animate: Option<bool>,
pub curve: Option<f64>,
pub duration: Option<f64>,
pub essential: Option<bool>,
pub max_duration: Option<f64>,
pub min_zoom: Option<f64>,
pub preloading_only: Option<bool>,
pub screen_speed: Option<f64>,
}Fields§
§animate: Option<bool>§curve: Option<f64>§duration: Option<f64>§essential: Option<bool>§max_duration: Option<f64>§min_zoom: Option<f64>§preloading_only: Option<bool>§screen_speed: Option<f64>Trait Implementations§
Source§impl Clone for AnimationOptions
impl Clone for AnimationOptions
Source§fn clone(&self) -> AnimationOptions
fn clone(&self) -> AnimationOptions
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 AnimationOptions
impl Debug for AnimationOptions
Source§impl Default for AnimationOptions
impl Default for AnimationOptions
Source§fn default() -> AnimationOptions
fn default() -> AnimationOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnimationOptions
impl<'de> Deserialize<'de> for AnimationOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AnimationOptions
impl RefUnwindSafe for AnimationOptions
impl Send for AnimationOptions
impl Sync for AnimationOptions
impl Unpin for AnimationOptions
impl UnwindSafe for AnimationOptions
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