pub struct SsrRuntimeRunning {
pub origin_url: String,
pub container_name: String,
}Expand description
Coordinates of a running SSR-runtime container returned by
ensure_ssr_runtime_running.
Fields§
§origin_url: StringURL miniflare points its SSR_ORIGIN binding at — host-side, never
includes a trailing slash. Format: http://127.0.0.1:{host_port}.
container_name: StringTrait Implementations§
Source§impl Clone for SsrRuntimeRunning
impl Clone for SsrRuntimeRunning
Source§fn clone(&self) -> SsrRuntimeRunning
fn clone(&self) -> SsrRuntimeRunning
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SsrRuntimeRunning
impl Debug for SsrRuntimeRunning
Source§impl<'de> Deserialize<'de> for SsrRuntimeRunning
impl<'de> Deserialize<'de> for SsrRuntimeRunning
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SsrRuntimeRunning
impl RefUnwindSafe for SsrRuntimeRunning
impl Send for SsrRuntimeRunning
impl Sync for SsrRuntimeRunning
impl Unpin for SsrRuntimeRunning
impl UnsafeUnpin for SsrRuntimeRunning
impl UnwindSafe for SsrRuntimeRunning
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