pub struct GetVaspsParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetVaspsParamsBuilder<S>
impl<S: State> GetVaspsParamsBuilder<S>
Sourcepub fn build(self) -> GetVaspsParamswhere
S: IsComplete,
pub fn build(self) -> GetVaspsParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn order(self, value: String) -> GetVaspsParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
pub fn order(self, value: String) -> GetVaspsParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
Sourcepub fn maybe_order(
self,
value: Option<String>,
) -> GetVaspsParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
pub fn maybe_order(
self,
value: Option<String>,
) -> GetVaspsParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
Sourcepub fn per_page(self, value: f64) -> GetVaspsParamsBuilder<SetPerPage<S>>where
S::PerPage: IsUnset,
pub fn per_page(self, value: f64) -> GetVaspsParamsBuilder<SetPerPage<S>>where
S::PerPage: IsUnset,
Sourcepub fn maybe_per_page(
self,
value: Option<f64>,
) -> GetVaspsParamsBuilder<SetPerPage<S>>where
S::PerPage: IsUnset,
pub fn maybe_per_page(
self,
value: Option<f64>,
) -> GetVaspsParamsBuilder<SetPerPage<S>>where
S::PerPage: IsUnset,
Sourcepub fn page(self, value: f64) -> GetVaspsParamsBuilder<SetPage<S>>where
S::Page: IsUnset,
pub fn page(self, value: f64) -> GetVaspsParamsBuilder<SetPage<S>>where
S::Page: IsUnset,
Sourcepub fn maybe_page(self, value: Option<f64>) -> GetVaspsParamsBuilder<SetPage<S>>where
S::Page: IsUnset,
pub fn maybe_page(self, value: Option<f64>) -> GetVaspsParamsBuilder<SetPage<S>>where
S::Page: IsUnset,
Sourcepub fn fields(self, value: String) -> GetVaspsParamsBuilder<SetFields<S>>where
S::Fields: IsUnset,
pub fn fields(self, value: String) -> GetVaspsParamsBuilder<SetFields<S>>where
S::Fields: IsUnset,
Sourcepub fn maybe_fields(
self,
value: Option<String>,
) -> GetVaspsParamsBuilder<SetFields<S>>where
S::Fields: IsUnset,
pub fn maybe_fields(
self,
value: Option<String>,
) -> GetVaspsParamsBuilder<SetFields<S>>where
S::Fields: IsUnset,
Sourcepub fn q(self, value: String) -> GetVaspsParamsBuilder<SetQ<S>>where
S::Q: IsUnset,
pub fn q(self, value: String) -> GetVaspsParamsBuilder<SetQ<S>>where
S::Q: IsUnset,
Sourcepub fn maybe_q(self, value: Option<String>) -> GetVaspsParamsBuilder<SetQ<S>>where
S::Q: IsUnset,
pub fn maybe_q(self, value: Option<String>) -> GetVaspsParamsBuilder<SetQ<S>>where
S::Q: IsUnset,
Sourcepub fn review_value(
self,
value: String,
) -> GetVaspsParamsBuilder<SetReviewValue<S>>where
S::ReviewValue: IsUnset,
pub fn review_value(
self,
value: String,
) -> GetVaspsParamsBuilder<SetReviewValue<S>>where
S::ReviewValue: IsUnset,
Sourcepub fn maybe_review_value(
self,
value: Option<String>,
) -> GetVaspsParamsBuilder<SetReviewValue<S>>where
S::ReviewValue: IsUnset,
pub fn maybe_review_value(
self,
value: Option<String>,
) -> GetVaspsParamsBuilder<SetReviewValue<S>>where
S::ReviewValue: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetVaspsParamsBuilder<S>
impl<S> RefUnwindSafe for GetVaspsParamsBuilder<S>
impl<S> Send for GetVaspsParamsBuilder<S>
impl<S> Sync for GetVaspsParamsBuilder<S>
impl<S> Unpin for GetVaspsParamsBuilder<S>
impl<S> UnwindSafe for GetVaspsParamsBuilder<S>
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