Skip to main content

BusEvent

Enum BusEvent 

Source
#[non_exhaustive]
pub enum BusEvent { Process { event: ProcessEventKind, info: ProcessInfo, manually: bool, at_ms: u64, }, LogOut { id: u32, line: String, }, LogErr { id: u32, line: String, }, Channel { id: u32, message: ChildMessage, }, Dropped { count: u64, }, DaemonShutdown, DogConfigChanged { dog: String, }, }
Expand description

One event on the daemon bus

Adjacently tagged: event discriminator, data wrapper. Subscription topics are the dotted strings from BusEvent::topic (process.exit, log.out, daemon.*); the daemon’s filter globs against them.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Process

Lifecycle event for one sheep

Fields

§event: ProcessEventKind

What happened

§info: ProcessInfo

Sheep snapshot at event time

§manually: bool

True when a user action caused it

§at_ms: u64

Unix millis

§

LogOut

One stdout line from a sheep

Fields

§id: u32

Sheep id

§line: String

The line (no trailing newline)

§

LogErr

One stderr line from a sheep

Fields

§id: u32

Sheep id

§line: String

The line

§

Channel

One message a sheep wrote on its shepherd channel (fd 3).

Child -> shepherd only: the shepherd’s own writes (a shutdown message, a dispatched action) are reported elsewhere, by process.stop and Response::Triggered.

message is the app’s own text, whole and unredacted. The daemon adds nothing of its own; app-provided text must be safe for every subscriber, since it is broadcast verbatim.

Fields

§id: u32

The sheep that wrote it.

§message: ChildMessage

The message, exactly as it came off fd 3.

§

Dropped

The bounded queue dropped this many events for this subscriber

Fields

§count: u64

Dropped-event count since last notice

§

DaemonShutdown

Daemon is shutting down

§

DogConfigChanged

A dog’s section in dogs.toml changed. Published under config.dog.<name>, so a dog subscribes to its own name and hears nobody else’s.

Carries only the dog’s name, nothing else: the bus is a broadcast, and a [bark] section can hold a webhook URL as a bearer credential (why DogSectionToml redacts its own Debug). A dog that wants the values re-asks with Request::DogConfig, which answers only that dog’s own section.

Fields

§dog: String

The dog whose section changed.

Implementations§

Source§

impl BusEvent

Source

pub fn topic(&self) -> Cow<'static, str>

The dotted subscription topic for this event (spec §6 grammar)

A Cow rather than a &'static str, because one topic is not fixed: Self::DogConfigChanged names its dog in the topic itself, which is what lets a dog subscribe to its own config and hear nobody else’s. Every other variant is still a borrowed literal and allocates nothing.

Trait Implementations§

Source§

impl Clone for BusEvent

Source§

fn clone(&self) -> BusEvent

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BusEvent

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for BusEvent

Source§

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 BusEvent

Source§

fn eq(&self, other: &BusEvent) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for BusEvent

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for BusEvent

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.