pub struct EventObjectRef {
pub object_id: Uuid,
pub object_type_id: String,
pub external_id: Option<String>,
pub qualifier: ObjectQualifier,
}Expand description
Reference from event to object with qualifier.
Fields§
§object_id: UuidObject ID
object_type_id: StringObject type ID
external_id: Option<String>Object external ID (for convenience)
qualifier: ObjectQualifierQualifier describing the relationship
Implementations§
Source§impl EventObjectRef
impl EventObjectRef
Sourcepub fn new(
object_id: Uuid,
object_type_id: &str,
qualifier: ObjectQualifier,
) -> Self
pub fn new( object_id: Uuid, object_type_id: &str, qualifier: ObjectQualifier, ) -> Self
Create a new object reference.
Sourcepub fn with_external_id(self, external_id: &str) -> Self
pub fn with_external_id(self, external_id: &str) -> Self
Set the external ID.
Sourcepub fn created(object_id: Uuid, object_type_id: &str) -> Self
pub fn created(object_id: Uuid, object_type_id: &str) -> Self
Create a reference for a created object.
Sourcepub fn updated(object_id: Uuid, object_type_id: &str) -> Self
pub fn updated(object_id: Uuid, object_type_id: &str) -> Self
Create a reference for an updated object.
Sourcepub fn read(object_id: Uuid, object_type_id: &str) -> Self
pub fn read(object_id: Uuid, object_type_id: &str) -> Self
Create a reference for a read/referenced object.
Trait Implementations§
Source§impl Clone for EventObjectRef
impl Clone for EventObjectRef
Source§fn clone(&self) -> EventObjectRef
fn clone(&self) -> EventObjectRef
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 EventObjectRef
impl Debug for EventObjectRef
Source§impl<'de> Deserialize<'de> for EventObjectRef
impl<'de> Deserialize<'de> for EventObjectRef
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
Source§impl PartialEq for EventObjectRef
impl PartialEq for EventObjectRef
Source§impl Serialize for EventObjectRef
impl Serialize for EventObjectRef
impl Eq for EventObjectRef
impl StructuralPartialEq for EventObjectRef
Auto Trait Implementations§
impl Freeze for EventObjectRef
impl RefUnwindSafe for EventObjectRef
impl Send for EventObjectRef
impl Sync for EventObjectRef
impl Unpin for EventObjectRef
impl UnwindSafe for EventObjectRef
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.