pub struct Params { /* private fields */ }Implementations§
Source§impl Params
impl Params
Sourcepub fn builder() -> ParamsBuilder<((), (), (), (), (), ())>
pub fn builder() -> ParamsBuilder<((), (), (), (), (), ())>
Create a builder for building Params.
On the builder, call .pair(...), .count(...)(optional), .from_id(...)(optional), .end_id(...)(optional), .since(...)(optional), .end(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of Params.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl Send for Params
impl Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
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