pub struct ResolvedLiveRuntime {
pub endpoint: LiveRuntimeEndpoint,
pub runtime_session_id: String,
pub source: LiveRuntimeSource,
pub base_url: String,
pub token: String,
pub pid: u32,
}Expand description
Secret host-side information recovered from a verified receipt.
Do not serialize this value into browser-facing discovery results: it contains the bearer token for the loopback SDK runtime.
Fields§
§endpoint: LiveRuntimeEndpointOpaque endpoint used to locate the receipt.
runtime_session_id: StringSDK runtime’s stable session identity.
source: LiveRuntimeSourcePersisted source identity advertised by discovery.
base_url: StringLoopback HTTP address of the SDK runtime.
token: StringBearer token accepted by that runtime.
pid: u32Process that owns the runtime.
Auto Trait Implementations§
impl Freeze for ResolvedLiveRuntime
impl RefUnwindSafe for ResolvedLiveRuntime
impl Send for ResolvedLiveRuntime
impl Sync for ResolvedLiveRuntime
impl Unpin for ResolvedLiveRuntime
impl UnsafeUnpin for ResolvedLiveRuntime
impl UnwindSafe for ResolvedLiveRuntime
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more