Struct Scope Handle
Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub struct ScopeHandle {
pub uuid: Uuid,
pub started_at: DateTime<Utc>,
pub scope_type: ScopeType,
pub name: String,
pub data: Option<Json>,
pub metadata: Option<Json>,
pub attributes: ScopeAttributes,
pub parent_uuid: Option<Uuid>,
}
Runtime-owned handle identifying an active or completed scope.
Fields
uuid: Uuid
Unique scope identifier.
started_at: DateTime<Utc>
Timestamp captured when the scope handle was created.
scope_type: ScopeType
Semantic category of the scope.
name: String
Human-readable scope name.
data: Option<Json>
Optional application payload stored on the handle.
metadata: Option<Json>
Optional metadata attached to the scope.
attributes: ScopeAttributes
Scope behavior flags.
parent_uuid: Option<Uuid>
UUID of the parent scope, if any.
Implementations
impl ScopeHandle
impl ScopeHandle
builder
pub fn builder() -> ScopeHandleBuilder<((), (), (), (), (), (), (), ())>
Create a builder for building ScopeHandle. On the builder, call .uuid(...)(optional), .started_at(...)(optional), .scope_type(...), .name(...), .data(...)(optional), .metadata(...)(optional), .attributes(...)(optional), .parent_uuid(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of ScopeHandle.
Trait Implementations
impl Clone for ScopeHandle
impl Clone for ScopeHandle
clone
fn clone(&self) -> ScopeHandle
clone_from
fn clone_from(&mut self, source: &Self)
impl Debug for ScopeHandle
impl Debug for ScopeHandle
fmt
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'de> Deserialize<'de> for ScopeHandle
impl<'de> Deserialize<'de> for ScopeHandle
deserialize
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Serialize for ScopeHandle
impl Serialize for ScopeHandle
serialize
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
__S: Serializer,