pub struct JetstreamEventCommit {
pub rev: String,
pub operation: String,
pub collection: String,
pub rkey: String,
pub cid: String,
pub record: Value,
}
Expand description
Repository commit operation details
Fields§
§rev: String
Repository revision identifier
operation: String
Operation type (create, update)
collection: String
AT Protocol collection name
rkey: String
Record key within the collection
cid: String
Content identifier (CID) of the record
record: Value
Record data as JSON
Trait Implementations§
Source§impl Clone for JetstreamEventCommit
impl Clone for JetstreamEventCommit
Source§fn clone(&self) -> JetstreamEventCommit
fn clone(&self) -> JetstreamEventCommit
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 JetstreamEventCommit
impl Debug for JetstreamEventCommit
Source§impl<'de> Deserialize<'de> for JetstreamEventCommit
impl<'de> Deserialize<'de> for JetstreamEventCommit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JetstreamEventCommit
impl RefUnwindSafe for JetstreamEventCommit
impl Send for JetstreamEventCommit
impl Sync for JetstreamEventCommit
impl Unpin for JetstreamEventCommit
impl UnwindSafe for JetstreamEventCommit
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