Fix broken intra-doc links

This commit is contained in:
Héctor Ramón Jiménez 2025-08-23 02:41:52 +02:00
parent fbe60feb7e
commit 885d45f435
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
7 changed files with 21 additions and 21 deletions

View file

@ -107,7 +107,7 @@ where
}
}
/// Sets the [`Id`] of the [`Container`].
/// Sets the [`widget::Id`] of the [`Container`].
pub fn id(mut self, id: impl Into<widget::Id>) -> Self {
self.id = Some(id.into());
self
@ -458,7 +458,7 @@ pub fn draw_background<Renderer>(
}
/// Produces a [`Task`] that queries the visible screen bounds of the
/// [`Container`] with the given [`Id`].
/// [`Container`] with the given [`widget::Id`].
pub fn visible_bounds(_id: impl Into<widget::Id>) -> Task<Option<Rectangle>> {
todo!()
}

View file

@ -149,7 +149,7 @@ where
self.validate()
}
/// Sets the [`Id`] of the [`Scrollable`].
/// Sets the [`widget::Id`] of the [`Scrollable`].
pub fn id(mut self, id: impl Into<widget::Id>) -> Self {
self.id = Some(id.into());
self
@ -1262,7 +1262,7 @@ where
}
}
/// Produces a [`Task`] that snaps the [`Scrollable`] with the given [`Id`]
/// Produces a [`Task`] that snaps the [`Scrollable`] with the given [`widget::Id`]
/// to the provided [`RelativeOffset`].
pub fn snap_to<T>(
id: impl Into<widget::Id>,
@ -1274,7 +1274,7 @@ pub fn snap_to<T>(
)))
}
/// Produces a [`Task`] that scrolls the [`Scrollable`] with the given [`Id`]
/// Produces a [`Task`] that scrolls the [`Scrollable`] with the given [`widget::Id`]
/// to the provided [`AbsoluteOffset`].
pub fn scroll_to<T>(
id: impl Into<widget::Id>,
@ -1286,7 +1286,7 @@ pub fn scroll_to<T>(
)))
}
/// Produces a [`Task`] that scrolls the [`Scrollable`] with the given [`Id`]
/// Produces a [`Task`] that scrolls the [`Scrollable`] with the given [`widget::Id`]
/// by the provided [`AbsoluteOffset`].
pub fn scroll_by<T>(
id: impl Into<widget::Id>,

View file

@ -156,7 +156,7 @@ where
}
}
/// Sets the [`Id`] of the [`TextInput`].
/// Sets the [`widget::Id`] of the [`TextInput`].
pub fn id(mut self, id: impl Into<widget::Id>) -> Self {
self.id = Some(id.into());
self
@ -1445,17 +1445,17 @@ pub enum Side {
Right,
}
/// Produces a [`Task`] that returns whether the [`TextInput`] with the given [`Id`] is focused or not.
/// Produces a [`Task`] that returns whether the [`TextInput`] with the given [`widget::Id`] is focused or not.
pub fn is_focused(id: impl Into<widget::Id>) -> Task<bool> {
task::widget(operation::focusable::is_focused(id.into()))
}
/// Produces a [`Task`] that focuses the [`TextInput`] with the given [`Id`].
/// Produces a [`Task`] that focuses the [`TextInput`] with the given [`widget::Id`].
pub fn focus<T>(id: impl Into<widget::Id>) -> Task<T> {
task::effect(Action::widget(operation::focusable::focus(id.into())))
}
/// Produces a [`Task`] that moves the cursor of the [`TextInput`] with the given [`Id`] to the
/// Produces a [`Task`] that moves the cursor of the [`TextInput`] with the given [`widget::Id`] to the
/// end.
pub fn move_cursor_to_end<T>(id: impl Into<widget::Id>) -> Task<T> {
task::effect(Action::widget(operation::text_input::move_cursor_to_end(
@ -1463,7 +1463,7 @@ pub fn move_cursor_to_end<T>(id: impl Into<widget::Id>) -> Task<T> {
)))
}
/// Produces a [`Task`] that moves the cursor of the [`TextInput`] with the given [`Id`] to the
/// Produces a [`Task`] that moves the cursor of the [`TextInput`] with the given [`widget::Id`] to the
/// front.
pub fn move_cursor_to_front<T>(id: impl Into<widget::Id>) -> Task<T> {
task::effect(Action::widget(operation::text_input::move_cursor_to_front(
@ -1471,7 +1471,7 @@ pub fn move_cursor_to_front<T>(id: impl Into<widget::Id>) -> Task<T> {
)))
}
/// Produces a [`Task`] that moves the cursor of the [`TextInput`] with the given [`Id`] to the
/// Produces a [`Task`] that moves the cursor of the [`TextInput`] with the given [`widget::Id`] to the
/// provided position.
pub fn move_cursor_to<T>(
id: impl Into<widget::Id>,
@ -1483,7 +1483,7 @@ pub fn move_cursor_to<T>(
)))
}
/// Produces a [`Task`] that selects all the content of the [`TextInput`] with the given [`Id`].
/// Produces a [`Task`] that selects all the content of the [`TextInput`] with the given [`widget::Id`].
pub fn select_all<T>(id: impl Into<widget::Id>) -> Task<T> {
task::effect(Action::widget(operation::text_input::select_all(id.into())))
}