Enum objtalk::server::logger::LogMessage[][src]

pub enum LogMessage {
    ClientConnect {
        client: Uuid,
    },
    ClientDisconnect {
        client: Uuid,
    },
    Set {
        object: String,
        value: Value,
        client: Uuid,
    },
    Patch {
        object: String,
        value: Value,
        client: Uuid,
    },
    Get {
        pattern: String,
        client: Uuid,
    },
    Query {
        pattern: String,
        query: Uuid,
        client: Uuid,
    },
    Unsubscribe {
        query: Uuid,
        client: Uuid,
    },
    Remove {
        object: String,
        client: Uuid,
    },
    Emit {
        object: String,
        event: String,
        data: Value,
        client: Uuid,
    },
}

Variants

ClientConnect
Show fields

Fields of ClientConnect

client: Uuid
ClientDisconnect
Show fields

Fields of ClientDisconnect

client: Uuid
Set
Show fields

Fields of Set

object: Stringvalue: Valueclient: Uuid
Patch
Show fields

Fields of Patch

object: Stringvalue: Valueclient: Uuid
Get
Show fields

Fields of Get

pattern: Stringclient: Uuid
Query
Show fields

Fields of Query

pattern: Stringquery: Uuidclient: Uuid
Unsubscribe
Show fields

Fields of Unsubscribe

query: Uuidclient: Uuid
Remove
Show fields

Fields of Remove

object: Stringclient: Uuid
Emit
Show fields

Fields of Emit

object: Stringevent: Stringdata: Valueclient: Uuid

Trait Implementations

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.