pub struct ListBlockchainsParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> ListBlockchainsParamsBuilder<S>
impl<S: State> ListBlockchainsParamsBuilder<S>
Sourcepub fn build(self) -> ListBlockchainsParamswhere
S: IsComplete,
pub fn build(self) -> ListBlockchainsParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn protocol(
self,
value: String,
) -> ListBlockchainsParamsBuilder<SetProtocol<S>>where
S::Protocol: IsUnset,
pub fn protocol(
self,
value: String,
) -> ListBlockchainsParamsBuilder<SetProtocol<S>>where
S::Protocol: IsUnset,
Sourcepub fn maybe_protocol(
self,
value: Option<String>,
) -> ListBlockchainsParamsBuilder<SetProtocol<S>>where
S::Protocol: IsUnset,
pub fn maybe_protocol(
self,
value: Option<String>,
) -> ListBlockchainsParamsBuilder<SetProtocol<S>>where
S::Protocol: IsUnset,
Sourcepub fn deprecated(
self,
value: bool,
) -> ListBlockchainsParamsBuilder<SetDeprecated<S>>where
S::Deprecated: IsUnset,
pub fn deprecated(
self,
value: bool,
) -> ListBlockchainsParamsBuilder<SetDeprecated<S>>where
S::Deprecated: IsUnset,
Sourcepub fn maybe_deprecated(
self,
value: Option<bool>,
) -> ListBlockchainsParamsBuilder<SetDeprecated<S>>where
S::Deprecated: IsUnset,
pub fn maybe_deprecated(
self,
value: Option<bool>,
) -> ListBlockchainsParamsBuilder<SetDeprecated<S>>where
S::Deprecated: IsUnset,
Sourcepub fn test(self, value: bool) -> ListBlockchainsParamsBuilder<SetTest<S>>where
S::Test: IsUnset,
pub fn test(self, value: bool) -> ListBlockchainsParamsBuilder<SetTest<S>>where
S::Test: IsUnset,
Sourcepub fn maybe_test(
self,
value: Option<bool>,
) -> ListBlockchainsParamsBuilder<SetTest<S>>where
S::Test: IsUnset,
pub fn maybe_test(
self,
value: Option<bool>,
) -> ListBlockchainsParamsBuilder<SetTest<S>>where
S::Test: IsUnset,
Sourcepub fn ids(self, value: Vec<String>) -> ListBlockchainsParamsBuilder<SetIds<S>>where
S::Ids: IsUnset,
pub fn ids(self, value: Vec<String>) -> ListBlockchainsParamsBuilder<SetIds<S>>where
S::Ids: IsUnset,
Sourcepub fn maybe_ids(
self,
value: Option<Vec<String>>,
) -> ListBlockchainsParamsBuilder<SetIds<S>>where
S::Ids: IsUnset,
pub fn maybe_ids(
self,
value: Option<Vec<String>>,
) -> ListBlockchainsParamsBuilder<SetIds<S>>where
S::Ids: IsUnset,
Sourcepub fn page_cursor(
self,
value: String,
) -> ListBlockchainsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn page_cursor(
self,
value: String,
) -> ListBlockchainsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn maybe_page_cursor(
self,
value: Option<String>,
) -> ListBlockchainsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn maybe_page_cursor(
self,
value: Option<String>,
) -> ListBlockchainsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn page_size(
self,
value: f64,
) -> ListBlockchainsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn page_size(
self,
value: f64,
) -> ListBlockchainsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn maybe_page_size(
self,
value: Option<f64>,
) -> ListBlockchainsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn maybe_page_size(
self,
value: Option<f64>,
) -> ListBlockchainsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for ListBlockchainsParamsBuilder<S>
impl<S> RefUnwindSafe for ListBlockchainsParamsBuilder<S>
impl<S> Send for ListBlockchainsParamsBuilder<S>
impl<S> Sync for ListBlockchainsParamsBuilder<S>
impl<S> Unpin for ListBlockchainsParamsBuilder<S>
impl<S> UnwindSafe for ListBlockchainsParamsBuilder<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