Struct vizia::animation::KeyframeBuilder
source · pub struct KeyframeBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> KeyframeBuilder<'a>
impl<'a> KeyframeBuilder<'a>
pub fn display(self, val: impl Into<Display>) -> KeyframeBuilder<'a>
pub fn opacity(self, val: impl Into<Opacity>) -> KeyframeBuilder<'a>
pub fn clip_path(self, val: impl Into<ClipPath>) -> KeyframeBuilder<'a>
pub fn transform(self, val: impl Into<Vec<Transform>>) -> KeyframeBuilder<'a>
pub fn transform_origin(self, val: impl Into<Position>) -> KeyframeBuilder<'a>
pub fn translate(self, val: impl Into<Translate>) -> KeyframeBuilder<'a>
pub fn rotate(self, val: impl Into<Angle>) -> KeyframeBuilder<'a>
pub fn scale(self, val: impl Into<Scale>) -> KeyframeBuilder<'a>
pub fn border_width(self, val: impl Into<BorderWidth>) -> KeyframeBuilder<'a>
pub fn border_color(self, val: impl Into<Color>) -> KeyframeBuilder<'a>
pub fn border_top_left_radius( self, val: impl Into<LengthOrPercentage>, ) -> KeyframeBuilder<'a>
pub fn border_top_right_radius( self, val: impl Into<LengthOrPercentage>, ) -> KeyframeBuilder<'a>
pub fn border_bottom_left_radius( self, val: impl Into<LengthOrPercentage>, ) -> KeyframeBuilder<'a>
pub fn border_bottom_right_radius( self, val: impl Into<LengthOrPercentage>, ) -> KeyframeBuilder<'a>
pub fn outline_width(self, val: impl Into<BorderWidth>) -> KeyframeBuilder<'a>
pub fn outline_color(self, val: impl Into<Color>) -> KeyframeBuilder<'a>
pub fn outline_offset( self, val: impl Into<LengthOrPercentage>, ) -> KeyframeBuilder<'a>
pub fn background_color(self, val: impl Into<Color>) -> KeyframeBuilder<'a>
pub fn background_image( self, val: impl Into<Vec<BackgroundImage<'a>>>, ) -> KeyframeBuilder<'a>
pub fn background_size( self, val: impl Into<Vec<BackgroundSize>>, ) -> KeyframeBuilder<'a>
pub fn shadow(self, val: impl Into<Vec<Shadow>>) -> KeyframeBuilder<'a>
pub fn color(self, val: impl Into<Color>) -> KeyframeBuilder<'a>
pub fn font_size(self, val: impl Into<FontSize>) -> KeyframeBuilder<'a>
pub fn caret_color(self, val: impl Into<Color>) -> KeyframeBuilder<'a>
pub fn selection_color(self, val: impl Into<Color>) -> KeyframeBuilder<'a>
pub fn left(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn right(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn top(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn bottom(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn child_left(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn child_right(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn child_top(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn child_bottom(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn col_between(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn row_between(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn width(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn height(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn min_width(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn max_width(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn min_height(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn max_height(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn min_left(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn max_left(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn min_right(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn max_right(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn min_top(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn max_top(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn min_bottom(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
pub fn max_bottom(self, val: impl Into<Units>) -> KeyframeBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for KeyframeBuilder<'a>
impl<'a> RefUnwindSafe for KeyframeBuilder<'a>
impl<'a> !Send for KeyframeBuilder<'a>
impl<'a> !Sync for KeyframeBuilder<'a>
impl<'a> Unpin for KeyframeBuilder<'a>
impl<'a> UnwindSafe for KeyframeBuilder<'a>
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.