pub trait EnvelopedMessage: Clone + Debug + Serialize + Sized + Send + Sync + 'static {
    const NAME: &'static str;
    const PRIORITY: MessagePriority;

    // Required methods
    fn into_envelope(
        self,
        id: u32,
        responding_to: Option<u32>,
        original_sender_id: Option<PeerId>
    ) -> Envelope;
    fn from_envelope(envelope: Envelope) -> Option<Self>;
}

Required Associated Constants§

Required Methods§

source

fn into_envelope( self, id: u32, responding_to: Option<u32>, original_sender_id: Option<PeerId> ) -> Envelope

source

fn from_envelope(envelope: Envelope) -> Option<Self>

Implementors§

source§

impl EnvelopedMessage for Ack

source§

const NAME: &'static str = "Ack"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for AckBufferOperation

source§

const NAME: &'static str = "AckBufferOperation"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for AckChannelMessage

source§

const NAME: &'static str = "AckChannelMessage"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for AddNotification

source§

const NAME: &'static str = "AddNotification"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for AddProjectCollaborator

source§

const NAME: &'static str = "AddProjectCollaborator"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for ApplyCodeAction

source§

const NAME: &'static str = "ApplyCodeAction"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for ApplyCodeActionResponse

source§

const NAME: &'static str = "ApplyCodeActionResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for ApplyCompletionAdditionalEdits

source§

const NAME: &'static str = "ApplyCompletionAdditionalEdits"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for ApplyCompletionAdditionalEditsResponse

source§

const NAME: &'static str = "ApplyCompletionAdditionalEditsResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for BufferReloaded

source§

const NAME: &'static str = "BufferReloaded"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for BufferSaved

source§

const NAME: &'static str = "BufferSaved"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for Call

source§

const NAME: &'static str = "Call"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for CallCanceled

source§

const NAME: &'static str = "CallCanceled"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for CancelCall

source§

const NAME: &'static str = "CancelCall"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for ChannelMessageSent

source§

const NAME: &'static str = "ChannelMessageSent"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for CopyProjectEntry

source§

const NAME: &'static str = "CopyProjectEntry"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for CreateBufferForPeer

source§

const NAME: &'static str = "CreateBufferForPeer"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for CreateChannel

source§

const NAME: &'static str = "CreateChannel"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for CreateChannelResponse

source§

const NAME: &'static str = "CreateChannelResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for CreateProjectEntry

source§

const NAME: &'static str = "CreateProjectEntry"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for CreateRoom

source§

const NAME: &'static str = "CreateRoom"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for CreateRoomResponse

source§

const NAME: &'static str = "CreateRoomResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for DeclineCall

source§

const NAME: &'static str = "DeclineCall"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for DeleteChannel

source§

const NAME: &'static str = "DeleteChannel"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for DeleteNotification

source§

const NAME: &'static str = "DeleteNotification"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for DeleteProjectEntry

source§

const NAME: &'static str = "DeleteProjectEntry"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for Error

source§

const NAME: &'static str = "Error"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for ExpandProjectEntry

source§

const NAME: &'static str = "ExpandProjectEntry"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for ExpandProjectEntryResponse

source§

const NAME: &'static str = "ExpandProjectEntryResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for Follow

source§

const NAME: &'static str = "Follow"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for FollowResponse

source§

const NAME: &'static str = "FollowResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for FormatBuffers

source§

const NAME: &'static str = "FormatBuffers"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for FormatBuffersResponse

source§

const NAME: &'static str = "FormatBuffersResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for FuzzySearchUsers

source§

const NAME: &'static str = "FuzzySearchUsers"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for GetChannelMembers

source§

const NAME: &'static str = "GetChannelMembers"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for GetChannelMembersResponse

source§

const NAME: &'static str = "GetChannelMembersResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for GetChannelMessages

source§

const NAME: &'static str = "GetChannelMessages"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetChannelMessagesById

source§

const NAME: &'static str = "GetChannelMessagesById"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetChannelMessagesResponse

source§

const NAME: &'static str = "GetChannelMessagesResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetCodeActions

source§

const NAME: &'static str = "GetCodeActions"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetCodeActionsResponse

source§

const NAME: &'static str = "GetCodeActionsResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetCompletions

source§

const NAME: &'static str = "GetCompletions"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetCompletionsResponse

source§

const NAME: &'static str = "GetCompletionsResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetDefinition

source§

const NAME: &'static str = "GetDefinition"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetDefinitionResponse

source§

const NAME: &'static str = "GetDefinitionResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetDocumentHighlights

source§

const NAME: &'static str = "GetDocumentHighlights"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetDocumentHighlightsResponse

source§

const NAME: &'static str = "GetDocumentHighlightsResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetHover

source§

const NAME: &'static str = "GetHover"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetHoverResponse

source§

const NAME: &'static str = "GetHoverResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetNotifications

source§

const NAME: &'static str = "GetNotifications"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for GetNotificationsResponse

source§

const NAME: &'static str = "GetNotificationsResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for GetPrivateUserInfo

source§

const NAME: &'static str = "GetPrivateUserInfo"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for GetPrivateUserInfoResponse

source§

const NAME: &'static str = "GetPrivateUserInfoResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for GetProjectSymbols

source§

const NAME: &'static str = "GetProjectSymbols"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetProjectSymbolsResponse

source§

const NAME: &'static str = "GetProjectSymbolsResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetReferences

source§

const NAME: &'static str = "GetReferences"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetReferencesResponse

source§

const NAME: &'static str = "GetReferencesResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetTypeDefinition

source§

const NAME: &'static str = "GetTypeDefinition"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetTypeDefinitionResponse

source§

const NAME: &'static str = "GetTypeDefinitionResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for GetUsers

source§

const NAME: &'static str = "GetUsers"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for Hello

source§

const NAME: &'static str = "Hello"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for IncomingCall

source§

const NAME: &'static str = "IncomingCall"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for InlayHints

source§

const NAME: &'static str = "InlayHints"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for InlayHintsResponse

source§

const NAME: &'static str = "InlayHintsResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for InviteChannelMember

source§

const NAME: &'static str = "InviteChannelMember"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for JoinChannel

source§

const NAME: &'static str = "JoinChannel"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for JoinChannelBuffer

source§

const NAME: &'static str = "JoinChannelBuffer"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for JoinChannelBufferResponse

source§

const NAME: &'static str = "JoinChannelBufferResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for JoinChannelChat

source§

const NAME: &'static str = "JoinChannelChat"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for JoinChannelChatResponse

source§

const NAME: &'static str = "JoinChannelChatResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for JoinProject

source§

const NAME: &'static str = "JoinProject"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for JoinProjectResponse

source§

const NAME: &'static str = "JoinProjectResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for JoinRoom

source§

const NAME: &'static str = "JoinRoom"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for JoinRoomResponse

source§

const NAME: &'static str = "JoinRoomResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for LeaveChannelBuffer

source§

const NAME: &'static str = "LeaveChannelBuffer"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for LeaveChannelChat

source§

const NAME: &'static str = "LeaveChannelChat"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for LeaveProject

source§

const NAME: &'static str = "LeaveProject"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for LeaveRoom

source§

const NAME: &'static str = "LeaveRoom"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for MarkNotificationRead

source§

const NAME: &'static str = "MarkNotificationRead"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for MoveChannel

source§

const NAME: &'static str = "MoveChannel"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for OnTypeFormatting

source§

const NAME: &'static str = "OnTypeFormatting"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for OnTypeFormattingResponse

source§

const NAME: &'static str = "OnTypeFormattingResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for OpenBufferById

source§

const NAME: &'static str = "OpenBufferById"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for OpenBufferByPath

source§

const NAME: &'static str = "OpenBufferByPath"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for OpenBufferForSymbol

source§

const NAME: &'static str = "OpenBufferForSymbol"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for OpenBufferForSymbolResponse

source§

const NAME: &'static str = "OpenBufferForSymbolResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for OpenBufferResponse

source§

const NAME: &'static str = "OpenBufferResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for PerformRename

source§

const NAME: &'static str = "PerformRename"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for PerformRenameResponse

source§

const NAME: &'static str = "PerformRenameResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for Ping

source§

const NAME: &'static str = "Ping"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for PrepareRename

source§

const NAME: &'static str = "PrepareRename"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for PrepareRenameResponse

source§

const NAME: &'static str = "PrepareRenameResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for ProjectEntryResponse

source§

const NAME: &'static str = "ProjectEntryResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RefreshInlayHints

source§

const NAME: &'static str = "RefreshInlayHints"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RejoinChannelBuffers

source§

const NAME: &'static str = "RejoinChannelBuffers"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RejoinChannelBuffersResponse

source§

const NAME: &'static str = "RejoinChannelBuffersResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RejoinRoom

source§

const NAME: &'static str = "RejoinRoom"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RejoinRoomResponse

source§

const NAME: &'static str = "RejoinRoomResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for ReloadBuffers

source§

const NAME: &'static str = "ReloadBuffers"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for ReloadBuffersResponse

source§

const NAME: &'static str = "ReloadBuffersResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RemoveChannelMember

source§

const NAME: &'static str = "RemoveChannelMember"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RemoveChannelMessage

source§

const NAME: &'static str = "RemoveChannelMessage"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RemoveContact

source§

const NAME: &'static str = "RemoveContact"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RemoveProjectCollaborator

source§

const NAME: &'static str = "RemoveProjectCollaborator"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RenameChannel

source§

const NAME: &'static str = "RenameChannel"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RenameChannelResponse

source§

const NAME: &'static str = "RenameChannelResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RenameProjectEntry

source§

const NAME: &'static str = "RenameProjectEntry"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RequestContact

source§

const NAME: &'static str = "RequestContact"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for ResolveCompletionDocumentation

source§

const NAME: &'static str = "ResolveCompletionDocumentation"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for ResolveCompletionDocumentationResponse

source§

const NAME: &'static str = "ResolveCompletionDocumentationResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for ResolveInlayHint

source§

const NAME: &'static str = "ResolveInlayHint"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for ResolveInlayHintResponse

source§

const NAME: &'static str = "ResolveInlayHintResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for RespondToChannelInvite

source§

const NAME: &'static str = "RespondToChannelInvite"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RespondToContactRequest

source§

const NAME: &'static str = "RespondToContactRequest"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for RoomUpdated

source§

const NAME: &'static str = "RoomUpdated"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for SaveBuffer

source§

const NAME: &'static str = "SaveBuffer"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for SearchProject

source§

const NAME: &'static str = "SearchProject"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for SearchProjectResponse

source§

const NAME: &'static str = "SearchProjectResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for SendChannelMessage

source§

const NAME: &'static str = "SendChannelMessage"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for SendChannelMessageResponse

source§

const NAME: &'static str = "SendChannelMessageResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Background

source§

impl EnvelopedMessage for SetChannelMemberRole

source§

const NAME: &'static str = "SetChannelMemberRole"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for SetChannelVisibility

source§

const NAME: &'static str = "SetChannelVisibility"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for ShareProject

source§

const NAME: &'static str = "ShareProject"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for ShareProjectResponse

source§

const NAME: &'static str = "ShareProjectResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for ShowContacts

source§

const NAME: &'static str = "ShowContacts"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for StartLanguageServer

source§

const NAME: &'static str = "StartLanguageServer"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for SynchronizeBuffers

source§

const NAME: &'static str = "SynchronizeBuffers"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for SynchronizeBuffersResponse

source§

const NAME: &'static str = "SynchronizeBuffersResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for Test

source§

const NAME: &'static str = "Test"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for Unfollow

source§

const NAME: &'static str = "Unfollow"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UnshareProject

source§

const NAME: &'static str = "UnshareProject"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateBuffer

source§

const NAME: &'static str = "UpdateBuffer"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateBufferFile

source§

const NAME: &'static str = "UpdateBufferFile"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateChannelBuffer

source§

const NAME: &'static str = "UpdateChannelBuffer"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateChannelBufferCollaborators

source§

const NAME: &'static str = "UpdateChannelBufferCollaborators"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateChannels

source§

const NAME: &'static str = "UpdateChannels"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateContacts

source§

const NAME: &'static str = "UpdateContacts"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateDiagnosticSummary

source§

const NAME: &'static str = "UpdateDiagnosticSummary"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateDiffBase

source§

const NAME: &'static str = "UpdateDiffBase"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateFollowers

source§

const NAME: &'static str = "UpdateFollowers"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateInviteInfo

source§

const NAME: &'static str = "UpdateInviteInfo"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateLanguageServer

source§

const NAME: &'static str = "UpdateLanguageServer"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateParticipantLocation

source§

const NAME: &'static str = "UpdateParticipantLocation"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateProject

source§

const NAME: &'static str = "UpdateProject"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateProjectCollaborator

source§

const NAME: &'static str = "UpdateProjectCollaborator"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateWorktree

source§

const NAME: &'static str = "UpdateWorktree"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UpdateWorktreeSettings

source§

const NAME: &'static str = "UpdateWorktreeSettings"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground

source§

impl EnvelopedMessage for UsersResponse

source§

const NAME: &'static str = "UsersResponse"

source§

const PRIORITY: MessagePriority = MessagePriority::Foreground