We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d646a2 commit d88ba99Copy full SHA for d88ba99
src/helix/mod.rs
@@ -68,7 +68,6 @@ pub mod teams;
68
pub mod users;
69
pub mod videos;
70
71
-
72
pub(crate) mod ser;
73
pub(crate) use crate::deserialize_default_from_null;
74
use crate::{parse_json, parse_json_value};
src/helix/search/search_categories.rs
@@ -102,7 +102,9 @@ impl RequestGet for SearchCategoriesRequest<'_> {
102
}
103
104
impl helix::Paginated for SearchCategoriesRequest<'_> {
105
- fn set_pagination(&mut self, cursor: Option<helix::Cursor>) { self.after = cursor.map(Cow::Owned) }
+ fn set_pagination(&mut self, cursor: Option<helix::Cursor>) {
106
+ self.after = cursor.map(Cow::Owned)
107
+ }
108
109
110
#[cfg(test)]
0 commit comments