@@ -2,43 +2,43 @@ use crate::keyframes::{Button, Column, Container, Row, Space, StyleButton, Style
22use crate :: MovementType ;
33
44/// Create a button keyframe.
5- /// Needs to be added into a chain. See [`chain!`] macro.
5+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
66pub fn button ( at : impl Into < MovementType > ) -> Button {
77 Button :: new ( at)
88}
99
1010/// Create a column keyframe.
11- /// Needs to be added into a chain. See [`chain!`] macro.
11+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
1212pub fn column ( at : impl Into < MovementType > ) -> Column {
1313 Column :: new ( at)
1414}
1515
1616/// Create a container keyframe.
17- /// Needs to be added into a chain. See [`chain!`] macro.
17+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
1818pub fn container ( at : impl Into < MovementType > ) -> Container {
1919 Container :: new ( at)
2020}
2121
2222/// Create a row keyframe.
23- /// Needs to be added into a chain. See [`chain!`] macro.
23+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
2424pub fn row ( at : impl Into < MovementType > ) -> Row {
2525 Row :: new ( at)
2626}
2727
2828/// Create a space keyframe.
29- /// Needs to be added into a chain. See [`chain!`] macro.
29+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
3030pub fn space ( at : impl Into < MovementType > ) -> Space {
3131 Space :: new ( at)
3232}
3333
3434/// Create a style_button keyframe.
35- /// Needs to be added into a chain. See [`chain!`] macro.
35+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
3636pub fn style_button ( at : impl Into < MovementType > ) -> StyleButton {
3737 StyleButton :: new ( at)
3838}
3939
4040/// Create a style_container keyframe.
41- /// Needs to be added into a chain. See [`chain!`] macro.
41+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
4242pub fn style_container ( at : impl Into < MovementType > ) -> StyleContainer {
4343 StyleContainer :: new ( at)
4444}
@@ -49,43 +49,43 @@ pub mod lazy {
4949 use crate :: MovementType ;
5050
5151 /// Create a lazy button keyframe.
52- /// Needs to be added into a chain. See [`chain!`] macro.
52+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
5353 pub fn button ( at : impl Into < MovementType > ) -> Button {
5454 Button :: lazy ( at)
5555 }
5656
5757 /// Create a lazy column keyframe.
58- /// Needs to be added into a chain. See [`chain!`] macro.
58+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
5959 pub fn column ( at : impl Into < MovementType > ) -> Column {
6060 Column :: lazy ( at)
6161 }
6262
6363 /// Create a lazy container keyframe.
64- /// Needs to be added into a chain. See [`chain!`] macro.
64+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
6565 pub fn container ( at : impl Into < MovementType > ) -> Container {
6666 Container :: lazy ( at)
6767 }
6868
6969 /// Create a lazy row keyframe.
70- /// Needs to be added into a chain. See [`chain!`] macro.
70+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
7171 pub fn row ( at : impl Into < MovementType > ) -> Row {
7272 Row :: lazy ( at)
7373 }
7474
7575 /// Create a lazy space keyframe.
76- /// Needs to be added into a chain. See [`chain!`] macro.
76+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
7777 pub fn space ( at : impl Into < MovementType > ) -> Space {
7878 Space :: lazy ( at)
7979 }
8080
8181 /// Create a lazy style_button keyframe.
82- /// Needs to be added into a chain. See [`chain!`] macro.
82+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
8383 pub fn style_button ( at : impl Into < MovementType > ) -> StyleButton {
8484 StyleButton :: lazy ( at)
8585 }
8686
8787 /// Create a lazy style_container keyframe.
88- /// Needs to be added into a chain. See [`chain!`] macro.
88+ /// Needs to be added into a chain. See [`crate:: chain!`] macro.
8989 pub fn style_container ( at : impl Into < MovementType > ) -> StyleContainer {
9090 StyleContainer :: lazy ( at)
9191 }
0 commit comments