pub struct DynamoDbStreamRecord {
pub keys: HashMap<String, AttributeValue>,
pub new_image: Option<HashMap<String, AttributeValue>>,
pub old_image: Option<HashMap<String, AttributeValue>>,
pub sequence_number: String,
pub size_bytes: i64,
pub stream_view_type: String,
}Fields§
§keys: HashMap<String, AttributeValue>§new_image: Option<HashMap<String, AttributeValue>>§old_image: Option<HashMap<String, AttributeValue>>§sequence_number: String§size_bytes: i64§stream_view_type: StringTrait Implementations§
Source§impl Clone for DynamoDbStreamRecord
impl Clone for DynamoDbStreamRecord
Source§fn clone(&self) -> DynamoDbStreamRecord
fn clone(&self) -> DynamoDbStreamRecord
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 moreAuto Trait Implementations§
impl Freeze for DynamoDbStreamRecord
impl RefUnwindSafe for DynamoDbStreamRecord
impl Send for DynamoDbStreamRecord
impl Sync for DynamoDbStreamRecord
impl Unpin for DynamoDbStreamRecord
impl UnsafeUnpin for DynamoDbStreamRecord
impl UnwindSafe for DynamoDbStreamRecord
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