pub struct BatchReadRequest {
pub consistency_level: Option<String>,
pub directory_arn: String,
pub operations: Vec<BatchReadOperation>,
}Fields§
§consistency_level: Option<String>Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
directory_arn: StringThe Amazon Resource Name (ARN) that is associated with the Directory. For more information, see arns.
operations: Vec<BatchReadOperation>A list of operations that are part of the batch.
Trait Implementations§
Source§impl Clone for BatchReadRequest
impl Clone for BatchReadRequest
Source§fn clone(&self) -> BatchReadRequest
fn clone(&self) -> BatchReadRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BatchReadRequest
impl Debug for BatchReadRequest
Source§impl Default for BatchReadRequest
impl Default for BatchReadRequest
Source§fn default() -> BatchReadRequest
fn default() -> BatchReadRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchReadRequest
impl PartialEq for BatchReadRequest
Source§impl Serialize for BatchReadRequest
impl Serialize for BatchReadRequest
impl StructuralPartialEq for BatchReadRequest
Auto Trait Implementations§
impl Freeze for BatchReadRequest
impl RefUnwindSafe for BatchReadRequest
impl Send for BatchReadRequest
impl Sync for BatchReadRequest
impl Unpin for BatchReadRequest
impl UnwindSafe for BatchReadRequest
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