You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Cursor for forward pagination: tells the server where to start fetching the next set of results, in a multi-page response. The cursor value specified here is from the pagination response field of a prior query.
53
53
#[builder(default)]
54
-
pubafter:Option<helix::Cursor>,
54
+
pubafter:Option<Cow<'a,helix::CursorRef>>,
55
55
/// Cursor for backward pagination: tells the server where to start fetching the next set of results, in a multi-page response. The cursor value specified here is from the pagination response field of a prior query.
56
56
#[builder(default)]
57
-
pubbefore:Option<helix::Cursor>,
57
+
pubbefore:Option<Cow<'a,helix::CursorRef>>,
58
58
/// Number of values to be returned per page. Limit: 100. Default: 20.
59
59
#[builder(setter(into),default)]
60
-
pubfirst:Option<String>,
60
+
pubfirst:Option<Cow<'a,str>>,
61
61
}
62
62
63
63
/// Return Values for [Search Categories](super::search_categories)
0 commit comments