pub struct QueryDomainByParamBuilder<'a, S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<'a, S: State> QueryDomainByParamBuilder<'a, S>
impl<'a, S: State> QueryDomainByParamBuilder<'a, S>
Sourcepub fn build(self) -> QueryDomainByParam<'a>where
S: IsComplete,
pub fn build(self) -> QueryDomainByParam<'a>where
S: IsComplete,
Finish building and return the requested object
Sourcepub fn page_no(self, value: u32) -> QueryDomainByParamBuilder<'a, SetPageNo<S>>where
S::PageNo: IsUnset,
pub fn page_no(self, value: u32) -> QueryDomainByParamBuilder<'a, SetPageNo<S>>where
S::PageNo: IsUnset,
Sourcepub fn maybe_page_no(
self,
value: Option<u32>,
) -> QueryDomainByParamBuilder<'a, SetPageNo<S>>where
S::PageNo: IsUnset,
pub fn maybe_page_no(
self,
value: Option<u32>,
) -> QueryDomainByParamBuilder<'a, SetPageNo<S>>where
S::PageNo: IsUnset,
Sourcepub fn page_size(
self,
value: u16,
) -> QueryDomainByParamBuilder<'a, SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn page_size(
self,
value: u16,
) -> QueryDomainByParamBuilder<'a, SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn maybe_page_size(
self,
value: Option<u16>,
) -> QueryDomainByParamBuilder<'a, SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn maybe_page_size(
self,
value: Option<u16>,
) -> QueryDomainByParamBuilder<'a, SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn key_word(
self,
value: impl Into<String>,
) -> QueryDomainByParamBuilder<'a, SetKeyWord<S>>where
S::KeyWord: IsUnset,
pub fn key_word(
self,
value: impl Into<String>,
) -> QueryDomainByParamBuilder<'a, SetKeyWord<S>>where
S::KeyWord: IsUnset,
Sourcepub fn maybe_key_word(
self,
value: Option<impl Into<String>>,
) -> QueryDomainByParamBuilder<'a, SetKeyWord<S>>where
S::KeyWord: IsUnset,
pub fn maybe_key_word(
self,
value: Option<impl Into<String>>,
) -> QueryDomainByParamBuilder<'a, SetKeyWord<S>>where
S::KeyWord: IsUnset,
Sourcepub fn status(self, value: u8) -> QueryDomainByParamBuilder<'a, SetStatus<S>>where
S::Status: IsUnset,
pub fn status(self, value: u8) -> QueryDomainByParamBuilder<'a, SetStatus<S>>where
S::Status: IsUnset,
Sourcepub fn maybe_status(
self,
value: Option<u8>,
) -> QueryDomainByParamBuilder<'a, SetStatus<S>>where
S::Status: IsUnset,
pub fn maybe_status(
self,
value: Option<u8>,
) -> QueryDomainByParamBuilder<'a, SetStatus<S>>where
S::Status: IsUnset,
Auto Trait Implementations§
impl<'a, S> Freeze for QueryDomainByParamBuilder<'a, S>
impl<'a, S = Empty> !RefUnwindSafe for QueryDomainByParamBuilder<'a, S>
impl<'a, S> Send for QueryDomainByParamBuilder<'a, S>
impl<'a, S> Sync for QueryDomainByParamBuilder<'a, S>
impl<'a, S> Unpin for QueryDomainByParamBuilder<'a, S>
impl<'a, S> UnsafeUnpin for QueryDomainByParamBuilder<'a, S>
impl<'a, S = Empty> !UnwindSafe for QueryDomainByParamBuilder<'a, 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