pub struct QuerySubAccountApiKeyParamsBuilder { /* private fields */ }Expand description
Builder for QuerySubAccountApiKeyParams.
Implementations§
Source§impl QuerySubAccountApiKeyParamsBuilder
impl QuerySubAccountApiKeyParamsBuilder
Sourcepub fn email<VALUE: Into<String>>(self, value: VALUE) -> Self
pub fn email<VALUE: Into<String>>(self, value: VALUE) -> Self
Sub-account email
This field is **required.
Sourcepub fn sub_account_api_key<VALUE: Into<Option<String>>>(
self,
value: VALUE,
) -> Self
pub fn sub_account_api_key<VALUE: Into<Option<String>>>( self, value: VALUE, ) -> Self
Specify an API Key for exact match
This field is **optional.
Sourcepub fn page<VALUE: Into<Option<i64>>>(self, value: VALUE) -> Self
pub fn page<VALUE: Into<Option<i64>>>(self, value: VALUE) -> Self
Page number, default 1, minimum 1
This field is **optional.
Sourcepub fn size<VALUE: Into<Option<i64>>>(self, value: VALUE) -> Self
pub fn size<VALUE: Into<Option<i64>>>(self, value: VALUE) -> Self
Page size, default 30, maximum 100
This field is **optional.
Sourcepub fn recv_window<VALUE: Into<Option<i64>>>(self, value: VALUE) -> Self
pub fn recv_window<VALUE: Into<Option<i64>>>(self, value: VALUE) -> Self
The recv_window parameter.
This field is **optional.
Sourcepub fn build(self) -> Result<QuerySubAccountApiKeyParams, ParamBuildError>
pub fn build(self) -> Result<QuerySubAccountApiKeyParams, ParamBuildError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuerySubAccountApiKeyParamsBuilder
impl RefUnwindSafe for QuerySubAccountApiKeyParamsBuilder
impl Send for QuerySubAccountApiKeyParamsBuilder
impl Sync for QuerySubAccountApiKeyParamsBuilder
impl Unpin for QuerySubAccountApiKeyParamsBuilder
impl UnsafeUnpin for QuerySubAccountApiKeyParamsBuilder
impl UnwindSafe for QuerySubAccountApiKeyParamsBuilder
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