Skip to content

probe-web / @probe-web/client / wire / AttachResult

Type Alias: AttachResult

ts
type AttachResult = 
  | {
  Success: {
     key: bigint;
     marker: null;
  };
}
  | "ProbeNotFound"
  | {
  FailedToOpenProbe: string;
}
  | "ProbeInUse"
  | {
  TargetAttachFailed: {
     message: string;
     connect_under_reset: boolean;
  };
};

Defined in: wire.ts:39

probe-rs-rpc AttachResult.