#[non_exhaustive]pub struct BatchGetObjectAttributes {
pub object_reference: Option<ObjectReference>,
pub schema_facet: Option<SchemaFacet>,
pub attribute_names: Option<Vec<String>>,
}
Expand description
Retrieves attributes within a facet that are associated with an object inside an BatchRead
operation. For more information, see GetObjectAttributes
and BatchReadRequest$Operations
.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.object_reference: Option<ObjectReference>
Reference that identifies the object whose attributes will be retrieved.
schema_facet: Option<SchemaFacet>
Identifier for the facet whose attributes will be retrieved. See SchemaFacet
for details.
attribute_names: Option<Vec<String>>
List of attribute names whose values will be retrieved.
Implementations
sourceimpl BatchGetObjectAttributes
impl BatchGetObjectAttributes
sourcepub fn object_reference(&self) -> Option<&ObjectReference>
pub fn object_reference(&self) -> Option<&ObjectReference>
Reference that identifies the object whose attributes will be retrieved.
sourcepub fn schema_facet(&self) -> Option<&SchemaFacet>
pub fn schema_facet(&self) -> Option<&SchemaFacet>
Identifier for the facet whose attributes will be retrieved. See SchemaFacet
for details.
sourcepub fn attribute_names(&self) -> Option<&[String]>
pub fn attribute_names(&self) -> Option<&[String]>
List of attribute names whose values will be retrieved.
sourceimpl BatchGetObjectAttributes
impl BatchGetObjectAttributes
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BatchGetObjectAttributes
Trait Implementations
sourceimpl Clone for BatchGetObjectAttributes
impl Clone for BatchGetObjectAttributes
sourcefn clone(&self) -> BatchGetObjectAttributes
fn clone(&self) -> BatchGetObjectAttributes
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BatchGetObjectAttributes
impl Debug for BatchGetObjectAttributes
sourceimpl PartialEq<BatchGetObjectAttributes> for BatchGetObjectAttributes
impl PartialEq<BatchGetObjectAttributes> for BatchGetObjectAttributes
sourcefn eq(&self, other: &BatchGetObjectAttributes) -> bool
fn eq(&self, other: &BatchGetObjectAttributes) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BatchGetObjectAttributes) -> bool
fn ne(&self, other: &BatchGetObjectAttributes) -> bool
This method tests for !=
.
impl StructuralPartialEq for BatchGetObjectAttributes
Auto Trait Implementations
impl RefUnwindSafe for BatchGetObjectAttributes
impl Send for BatchGetObjectAttributes
impl Sync for BatchGetObjectAttributes
impl Unpin for BatchGetObjectAttributes
impl UnwindSafe for BatchGetObjectAttributes
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more