Skip to main content

UiResponse

Enum UiResponse 

Source
#[non_exhaustive]
pub enum UiResponse {
Show 20 variants Ack, EventList(Vec<EventSummary>), EventDetail(EventDetail), SearchHits(Vec<EventHit>), ApprovalList(Vec<ApprovalSummary>), ApprovalDetail(ApprovalDetailDto), SessionList(Vec<SessionSummary>), ReplayDump(SessionReplay), ChainVerification(ChainVerifyReport), ServerList(Vec<StoredServerProfile>), ServerOnboarding(ServerOnboardingData), ToolApprovalList(Vec<ToolApprovalCard>), DriftedServerList(Vec<ServerOnboardingData>), SandboxProfileList(Vec<SandboxProfile>), SandboxProfileOpt(Option<SandboxProfile>), ApprovalResolution(ApprovalResolutionDto), SandboxProfileUpserted(SandboxProfileUpsertDto), SecretBinding(SecretBindingSummary), PrivacyFindings(PrivacyFindingsDto), SessionExport(SessionExportDto),
}
Expand description

UI 响应的 tagged union。

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.
§

Ack

无返回数据(写命令成功 / 空查询)

§

EventList(Vec<EventSummary>)

事件列表(Activity Feed)

§

EventDetail(EventDetail)

单条事件的完整 payload

§

SearchHits(Vec<EventHit>)

FTS 搜索命中

§

ApprovalList(Vec<ApprovalSummary>)

Pending approval 概要

§

ApprovalDetail(ApprovalDetailDto)

Approval 完整细节

§

SessionList(Vec<SessionSummary>)

Session 列表

§

ReplayDump(SessionReplay)

Session replay

§

ChainVerification(ChainVerifyReport)

hash chain verify 结果

§

ServerList(Vec<StoredServerProfile>)

Server 列表

§

ServerOnboarding(ServerOnboardingData)

Server onboarding 数据

§

ToolApprovalList(Vec<ToolApprovalCard>)

Tool approval cards(pending 或 drifted)

§

DriftedServerList(Vec<ServerOnboardingData>)

Drifted servers

§

SandboxProfileList(Vec<SandboxProfile>)

Sandbox profile 列表

§

SandboxProfileOpt(Option<SandboxProfile>)

单个 sandbox profile(或 None)

§

ApprovalResolution(ApprovalResolutionDto)

Approval resolve 后的状态

§

SandboxProfileUpserted(SandboxProfileUpsertDto)

Sandbox profile upsert 后 id + hash

§

SecretBinding(SecretBindingSummary)

Secret refs + bindings(辅助 onboarding)

§

PrivacyFindings(PrivacyFindingsDto)

ISS-017 — Privacy Findings 聚合视图(全局 label × count + 最近 scans)

§

SessionExport(SessionExportDto)

ISS-018 — Safe Export 渲染结果(MD / HTML 字符串内容)

Trait Implementations§

Source§

impl Clone for UiResponse

Source§

fn clone(&self) -> UiResponse

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 UiResponse

Source§

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

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

impl<'de> Deserialize<'de> for UiResponse

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 Serialize for UiResponse

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

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> 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> Same for T

Source§

type Output = T

Should always be Self
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 = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.
Source§

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