pub struct R3ClientGetDevicesAsyncBuilder<'__f0, __State: __R3ClientGetDevicesAsyncBuilderState = (Optional<String>, Optional<i64>, Optional<i64>)> { /* private fields */ }
Expand description
Use builder syntax to set the required parameters and finish by calling the method Self::call()
.
Implementations§
source§impl<'__f0, __State: __R3ClientGetDevicesAsyncBuilderState> R3ClientGetDevicesAsyncBuilder<'__f0, __State>
impl<'__f0, __State: __R3ClientGetDevicesAsyncBuilderState> R3ClientGetDevicesAsyncBuilder<'__f0, __State>
source§impl<'__f0, __State: __R3ClientGetDevicesAsyncBuilderState<OrgId = Optional<String>>> R3ClientGetDevicesAsyncBuilder<'__f0, __State>
impl<'__f0, __State: __R3ClientGetDevicesAsyncBuilderState<OrgId = Optional<String>>> R3ClientGetDevicesAsyncBuilder<'__f0, __State>
sourcepub fn maybe_org_id(
self,
value: Option<impl Into<String>>,
) -> __R3ClientGetDevicesAsyncBuilderSetOrgId<'__f0, __State>
pub fn maybe_org_id( self, value: Option<impl Into<String>>, ) -> __R3ClientGetDevicesAsyncBuilderSetOrgId<'__f0, __State>
Same as Self::org_id
, but accepts an Option
as input. See that method’s documentation for more details.
source§impl<'__f0, __State: __R3ClientGetDevicesAsyncBuilderState<Limit = Optional<i64>>> R3ClientGetDevicesAsyncBuilder<'__f0, __State>
impl<'__f0, __State: __R3ClientGetDevicesAsyncBuilderState<Limit = Optional<i64>>> R3ClientGetDevicesAsyncBuilder<'__f0, __State>
sourcepub fn maybe_limit(
self,
value: Option<i64>,
) -> __R3ClientGetDevicesAsyncBuilderSetLimit<'__f0, __State>
pub fn maybe_limit( self, value: Option<i64>, ) -> __R3ClientGetDevicesAsyncBuilderSetLimit<'__f0, __State>
Same as Self::limit
, but accepts an Option
as input. See that method’s documentation for more details.
source§impl<'__f0, __State: __R3ClientGetDevicesAsyncBuilderState<Offset = Optional<i64>>> R3ClientGetDevicesAsyncBuilder<'__f0, __State>
impl<'__f0, __State: __R3ClientGetDevicesAsyncBuilderState<Offset = Optional<i64>>> R3ClientGetDevicesAsyncBuilder<'__f0, __State>
sourcepub fn maybe_offset(
self,
value: Option<i64>,
) -> __R3ClientGetDevicesAsyncBuilderSetOffset<'__f0, __State>
pub fn maybe_offset( self, value: Option<i64>, ) -> __R3ClientGetDevicesAsyncBuilderSetOffset<'__f0, __State>
Same as Self::offset
, but accepts an Option
as input. See that method’s documentation for more details.
Auto Trait Implementations§
impl<'__f0, __State> Freeze for R3ClientGetDevicesAsyncBuilder<'__f0, __State>
impl<'__f0, __State> RefUnwindSafe for R3ClientGetDevicesAsyncBuilder<'__f0, __State>where
<__State as __R3ClientGetDevicesAsyncBuilderState>::OrgId: RefUnwindSafe,
<__State as __R3ClientGetDevicesAsyncBuilderState>::Limit: RefUnwindSafe,
<__State as __R3ClientGetDevicesAsyncBuilderState>::Offset: RefUnwindSafe,
__State: RefUnwindSafe,
impl<'__f0, __State> Send for R3ClientGetDevicesAsyncBuilder<'__f0, __State>
impl<'__f0, __State> Sync for R3ClientGetDevicesAsyncBuilder<'__f0, __State>
impl<'__f0, __State> Unpin for R3ClientGetDevicesAsyncBuilder<'__f0, __State>
impl<'__f0, __State> UnwindSafe for R3ClientGetDevicesAsyncBuilder<'__f0, __State>where
<__State as __R3ClientGetDevicesAsyncBuilderState>::OrgId: UnwindSafe,
<__State as __R3ClientGetDevicesAsyncBuilderState>::Limit: UnwindSafe,
<__State as __R3ClientGetDevicesAsyncBuilderState>::Offset: UnwindSafe,
__State: UnwindSafe,
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