pub enum ManagementResponse {
Show 23 variants
ActorStarted {
id: TheaterId,
},
ActorStopped {
id: TheaterId,
},
ActorList {
actors: Vec<(TheaterId, String)>,
},
Subscribed {
id: TheaterId,
subscription_id: Uuid,
},
Unsubscribed {
id: TheaterId,
},
ActorEvent {
event: ChainEvent,
},
ActorResult(ActorResult),
ActorError {
error: ActorError,
},
Error {
error: ManagementError,
},
RequestedMessage {
id: TheaterId,
message: Vec<u8>,
},
SentMessage {
id: TheaterId,
},
ActorStatus {
id: TheaterId,
status: ActorStatus,
},
Restarted {
id: TheaterId,
},
ActorManifest {
id: TheaterId,
manifest: ManifestConfig,
},
ActorState {
id: TheaterId,
state: Option<Vec<u8>>,
},
ActorEvents {
id: TheaterId,
events: Vec<ChainEvent>,
},
ActorMetrics {
id: TheaterId,
metrics: Value,
},
ActorComponentUpdated {
id: TheaterId,
},
ChannelOpened {
channel_id: String,
actor_id: ChannelParticipant,
},
MessageSent {
channel_id: String,
},
ChannelMessage {
channel_id: String,
sender_id: ChannelParticipant,
message: Vec<u8>,
},
ChannelClosed {
channel_id: String,
},
StoreCreated {
store_id: String,
},
}Variants§
ActorStarted
ActorStopped
ActorList
Subscribed
Unsubscribed
ActorEvent
Fields
§
event: ChainEventActorResult(ActorResult)
ActorError
Fields
§
error: ActorErrorError
Fields
§
error: ManagementErrorRequestedMessage
SentMessage
ActorStatus
Restarted
ActorManifest
ActorState
ActorEvents
ActorMetrics
ActorComponentUpdated
ChannelOpened
MessageSent
ChannelMessage
ChannelClosed
StoreCreated
Trait Implementations§
Source§impl Clone for ManagementResponse
impl Clone for ManagementResponse
Source§fn clone(&self) -> ManagementResponse
fn clone(&self) -> ManagementResponse
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 ManagementResponse
impl Debug for ManagementResponse
Source§impl<'de> Deserialize<'de> for ManagementResponse
impl<'de> Deserialize<'de> for ManagementResponse
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 ManagementResponse
impl RefUnwindSafe for ManagementResponse
impl Send for ManagementResponse
impl Sync for ManagementResponse
impl Unpin for ManagementResponse
impl UnwindSafe for ManagementResponse
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more