pub struct GetTableEntityArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GetTableEntityArgsBuilder<S>
impl<S: State> GetTableEntityArgsBuilder<S>
sourcepub fn build_struct(self) -> GetTableEntityArgswhere
S: IsComplete,
pub fn build_struct(self) -> GetTableEntityArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn partition_key(
self,
value: impl Into<Output<String>>,
) -> GetTableEntityArgsBuilder<SetPartitionKey<S>>where
S::PartitionKey: IsUnset,
pub fn partition_key(
self,
value: impl Into<Output<String>>,
) -> GetTableEntityArgsBuilder<SetPartitionKey<S>>where
S::PartitionKey: IsUnset,
Required.
The key for the partition where the entity will be retrieved.
sourcepub fn row_key(
self,
value: impl Into<Output<String>>,
) -> GetTableEntityArgsBuilder<SetRowKey<S>>where
S::RowKey: IsUnset,
pub fn row_key(
self,
value: impl Into<Output<String>>,
) -> GetTableEntityArgsBuilder<SetRowKey<S>>where
S::RowKey: IsUnset,
Required.
The key for the row where the entity will be retrieved.
sourcepub fn storage_table_id(
self,
value: impl Into<Output<String>>,
) -> GetTableEntityArgsBuilder<SetStorageTableId<S>>where
S::StorageTableId: IsUnset,
pub fn storage_table_id(
self,
value: impl Into<Output<String>>,
) -> GetTableEntityArgsBuilder<SetStorageTableId<S>>where
S::StorageTableId: IsUnset,
Required.
The Storage Table ID where the entity exists.
Auto Trait Implementations§
impl<S> Freeze for GetTableEntityArgsBuilder<S>
impl<S> RefUnwindSafe for GetTableEntityArgsBuilder<S>
impl<S> Send for GetTableEntityArgsBuilder<S>
impl<S> Sync for GetTableEntityArgsBuilder<S>
impl<S> Unpin for GetTableEntityArgsBuilder<S>
impl<S> UnwindSafe for GetTableEntityArgsBuilder<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